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