HeightFieldLabelFormatPostfix Option

 

The HeightFieldLabelFormatPostfix option sets the postfix for the label in the legend for the HeightField module. The OptionValue is the desired postfix label.

 

Syntax

object.Construct(“CreateModule”)

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

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

object.Do() or object.DoOnce()

 

object.Construct(“ModifyModule”)

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

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

object.Do() or object.DoOnce()

 

Example

This example changes the label postfix for the legend.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("HeightFieldLabelFormatPostfix", "-post")

  CommandApi.Do()

 

Used by: HeightField

 

 

See Also

Automation Model