OrthoSliceMapping Option

 

The OrthoSliceMapping 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”, “OrthoImage”)

object.Do() or object.DoOnce()

 

object.Construct(“ModifyModule”)

object.Option(“Module”, “OrthoImage”)

object.Option(“OrthoSliceMapping”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example mapping method to colormap.

 

  CommandApi.Construct("ModifyModule")

  CommandApi.Option("Module","OrthoImage")

  CommandApi.Option("OrthoSliceMapping", "1")

  CommandApi.Do()

 

Used by: OrthoSlice module

 

 

See Also

Automation Model