AxesZAxisLabelFormatPrefix Option

 

The AxesZAxisLabelFormatPrefix option sets the prefix for the label in the Z axis for the Axes module. The OptionValue is the desired prefix 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(“AxesZAxisLabelFormatPrefix”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example changes the label prefix for the Z axis.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("AxesZAxisLabelFormatPrefix", "pre-")

  CommandApi.Do()

 

Used by: Axes module

 

 

See Also

Automation Model