The OrthoSliceMapCenter option changes the center of the Ortho image mapping. The OptionValue is a number. This option is only available if the OrthoSliceMapping is set to 0.
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(“OrthoSliceMapCenter”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the Ortho image mapping center to 12.
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","OrthoImage")
CommandApi.Option("OrthoSliceMapCenter", "12")
CommandApi.Do()
Used by: OrthoSlice module
See Also