Skip to main content

VoxelInformationDisplayMode

Other

Display mode for voxel information in the 2D slice views. Available values: - Off: No voxel information is displayed. - StatusBar: Voxel information is shown in the status bar. - MouseHover: Voxel information is shown as a tooltip at the mouse cursor. - Both: Voxel information is shown both in the status bar and at the mouse cursor.

Import

import ScriptingApi as api

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

Enumeration Values

Enumeration Mode from VoxelInformationDisplayMode

ValueDescription
VoxelInformationDisplayMode.OffOff option
VoxelInformationDisplayMode.StatusBarStatusBar option
VoxelInformationDisplayMode.MouseHoverMouseHover option
VoxelInformationDisplayMode.BothBoth option

Usage Example

import ScriptingApi as api

# Access enumeration values
value = api.VoxelInformationDisplayMode.Off

See Also