Skip to main content

OrientationMarkerType

Other

Orientation marker style for the 3D and 2D slice views. Available values: - Off: No orientation marker is shown. - Axes: Axes orientation marker. - BidirectionalAxes: Bidirectional axes orientation marker. - Cube: Labeled orientation cube marker. - Human: Human figure orientation marker.

Import

import ScriptingApi as api

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

Enumeration Values

Enumeration Type from OrientationMarkerType

ValueDescription
OrientationMarkerType.OffOff option
OrientationMarkerType.AxesAxes option
OrientationMarkerType.BidirectionalAxesBidirectionalAxes option
OrientationMarkerType.CubeCube option
OrientationMarkerType.HumanHuman option

Usage Example

import ScriptingApi as api

# Access enumeration values
value = api.OrientationMarkerType.Off

See Also