Skip to main content

MeasurementAnnotationType

Other

Representation types for measurement annotations. Selects what text the annotation label displays for a measurement. Available values: - Name: Display the measurement name only. - Value: Display the computed measurement value only. - NameAndValue: Display both the name and the computed value. - Position: Display the position (coordinates) only. - NameAndPosition: Display both the name and the position. - NotAny: Display no annotation text.

Import

import ScriptingApi as api

# Access the class
# MeasurementAnnotationType is available via api.MeasurementAnnotationType

Enumeration Values

Enumeration Type from MeasurementAnnotationType

ValueDescription
MeasurementAnnotationType.NameName option
MeasurementAnnotationType.ValueValue option
MeasurementAnnotationType.NameAndValueNameAndValue option
MeasurementAnnotationType.PositionPosition option
MeasurementAnnotationType.NameAndPositionNameAndPosition option
MeasurementAnnotationType.NotAnyNotAny option

Usage Example

import ScriptingApi as api

# Access enumeration values
value = api.MeasurementAnnotationType.Name

See Also