Skip to main content

SnapshotType

Enumerations

Types of snapshots that can be captured from the application.

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