The ObliqueSliceLighting option turns on or off the lighting of the oblique 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”, “ObliqueImage”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “ObliqueImage”)
object.Option(“ObliqueSliceLighting”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example turns on the oblique image lighting.
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","ObliqueImage")
CommandApi.Option("ObliqueSliceLighting", "True")
CommandApi.Do()
Used by: ObliqueSlice
See Also