The AxesXAxisCross2 option changes the X Axis Crosses Z Axis At value. The OptionValue is set to any number. The number is the Z Axis value that you want the X Axis to cross at.
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("AxesXAxisCross2", “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to force the X Axis to cross at the Z axis value of 50.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Axes")
CommandApi.Option ("AxesXAxisCross2", "50")
CommandApi.Do()
Used by: Axes module
See Also