The OrthoSliceSlice option sets the slice number being shown by the OrthoImage. The OptionValue is set to a slice number.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, “OrthoImage”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “OrthoImage”)
object.Option(“OrthoSliceSlice”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the OrthoImage slice number to 32.
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","OrthoImage")
CommandApi.Option("OrthoSliceSlice", "32")
CommandApi.Do()
Used by: OrthoSlice module
See Also