The OrthoSliceMapWidth option changes the width 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(“OrthoSliceMapWidth”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the Ortho image mapping width to 12.
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","OrthoImage")
CommandApi.Option("OrthoSliceMapWidth", "12")
CommandApi.Do()
Used by: OrthoSlice module
See Also