The ObliqueSliceMapCenter option changes the center of the oblique image mapping. The OptionValue is a number. This option is only available if the ObliqueSliceMapping is set to 0.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, “ObliqueImage”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “ObliqueImage”)
object.Option(“ObliqueSliceMapCenter”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the oblique image mapping center to 12.
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","ObliqueImage")
CommandApi.Option("ObliqueSliceMapCenter", "12")
CommandApi.Do()
Used by: ObliqueSlice
See Also