AxesZAxisLabelFormatPostfix Option

 

The AxesZAxisLabelFormatPostfix option sets the postfix for the label in the Z axis for the Axes module. The OptionValue is the desired postfix label

 

Syntax

object.Construct(“CreateModule”)

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

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

object.Do() or object.DoOnce()

 

object.Construct(“ModifyModule”)

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

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

object.Do() or object.DoOnce()

 

Example

This example changes the label postfix for the Z axis.

 

  CommandApi.Construct ("ModifyModule")

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

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

  CommandApi.Do()

 

Used by: Axes module

 

 

See Also

Automation Model