The OrthoSliceLegendTitle option changes the text displayed for the legend title for the OrthoImage module. The OptionValue is the desired text to be displayed.
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(“OrthoSliceLegendTitle”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the title of the legend.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "OrthoImage")
CommandApi.Option ("OrthoSliceLegendTitle", "Contour Legend Title")
CommandApi.Do()
Used by: OrthoSlice module
See Also