The AxesXAxisPlane option changes X Axis Plane, changing the rotation of the axis. The OptionValue is set to any number between -180 and +180.
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("AxesXAxisPlane", “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to change the X Axis Plane to 45 degrees.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Axes")
CommandApi.Option ("AxesXAxisPlane", "45")
CommandApi.Do()
Used by: Axes module
See Also