OrthoSliceLighting Option

 

The OrthoSliceLighting option turns on or off the lighting of the Ortho image. The OptionValue is set to either True or False. True turns on the lighting. False turns off the lighting.

 

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(“OrthoSliceLighting”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example turns on the Ortho image lighting.

 

  CommandApi.Construct("ModifyModule")

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

  CommandApi.Option("OrthoSliceLighting", "True")

  CommandApi.Do()

 

Used by: OrthoSlice module

 

 

See Also

Automation Model