The ObliqueSliceMapping option changes the mapping method to either Linear or Colormap. The OptionValue is either 0 or 1. 0 sets the mapping method to Linear. 1 sets the mapping method to Colormap.
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(“ObliqueSliceMapping”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example mapping method to colormap.
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","ObliqueImage")
CommandApi.Option("ObliqueSliceMapping", "1")
CommandApi.Do()
Used by: ObliqueSlice
See Also