-
-
Disable the automatic updating of annotation styles even if the corresponding measurement tool's styles are updated.
Example
WebViewer(...)
.then(function(instance) {
let measurementManager = instance.Core.documentViewer.getMeasurementManager();
measurementManager.disableAnnotationAndToolStyleSyncing()
});
-
-
Enable annotation's styles to be updated when the corresponding measurement tool's styles are updated.
Example
WebViewer(...)
.then(function(instance) {
let measurementManager = instance.Core.documentViewer.getMeasurementManager();
measurementManager.enableAnnotationAndToolStyleSyncing()
});
-
-
Return true if automatic updating of annotation styles when corresponding measurement tool's styles are updated, otherwise return false.
Returns:
-
Type
-
boolean
Example
WebViewer(...)
.then(function(instance) {
let measurementManager = instance.Core.documentViewer.getMeasurementManager();
measurementManager.isAnnotationAndToolStyleSyncingEnabled()
});