AxesYAxisCross2 Option

 

The AxesYAxisCross2 option changes the Y Axis Crosses X Axis At value. The OptionValue is set to any number. The number is the X Axis value that you want the Y 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("AxesYAxisCross1", “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example shows how to force the Y Axis to cross at the Z Axis value of 0.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("AxesYAxisCross1", "0")

  CommandApi.Do()

 

Used by: Axes module

 

 

See Also

Automation Model