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