Skip to main content

SnapshotType

Enumerations

individual 2D slice views. Available values: - Application: The entire application window. - Scene: The 3D scene only. - View3D: The 3D view using its current camera orientation. - View3D_NegativeX: The 3D view looking along the negative X axis. - View3D_PositiveX: The 3D view looking along the positive X axis. - View3D_NegativeY: The 3D view looking along the negative Y axis. - View3D_PositiveY: The 3D view looking along the positive Y axis. - View3D_NegativeZ: The 3D view looking along the negative Z axis. - View3D_PositiveZ: The 3D view looking along the positive Z axis. - View3D_Isometric: The 3D view from an isometric viewing angle. - Slice_LeftRight: The left-right (sagittal) 2D slice view. - Slice_FrontBack: The front-back (coronal) 2D slice view. - Slice_TopBottom: The top-bottom (axial) 2D slice view.

Import

import ScriptingApi as api

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

Enumeration Values

Enumeration Type from SnapshotType

ValueDescription
SnapshotType.ApplicationApplication option
SnapshotType.SceneScene option
SnapshotType.View3DView3D option
SnapshotType.View3D_NegativeXView3D_NegativeX option
SnapshotType.View3D_PositiveXView3D_PositiveX option
SnapshotType.View3D_NegativeYView3D_NegativeY option
SnapshotType.View3D_PositiveYView3D_PositiveY option
SnapshotType.View3D_NegativeZView3D_NegativeZ option
SnapshotType.View3D_PositiveZView3D_PositiveZ option
SnapshotType.View3D_IsometricView3D_Isometric option
SnapshotType.Slice_LeftRightSlice_LeftRight option
SnapshotType.Slice_FrontBackSlice_FrontBack option
SnapshotType.Slice_TopBottomSlice_TopBottom option

Usage Example

import ScriptingApi as api

# Access enumeration values
value = api.SnapshotType.Application

See Also