FaceRenderLegendUseCustomLabels Option

 

The FaceRenderLegendUseCustomLabels option turns on the display of custom labels for the legend for the FaceRender module. The OptionValue is True or False. True displays the custom labels. False displays automatic labels. Use the FaceRenderLegendCustomLabels to set the values and text for the labels.

 

Syntax

object.Construct(“CreateModule”)

object.Option(“SourceModule”, “data file name”)

object.Option(“Type”, “FaceRender”)

object.Do() or object.DoOnce()

 

object.Construct(“ModifyModule”)

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

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

object.Do() or object.DoOnce()

 

Example

This example turns on the display of custom labels for the legend.

 

  CommandApi.Construct ("ModifyModule")

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

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

  CommandApi.Do()

 

Used by: FaceRender

 

 

See Also

Automation Model