The AxesXAxisShow option changes the display of the X Axis. The OptionValue is either True or False. True shows the axis on the screen. False disables the axis.
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("AxesXAxisShow", “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to show the X Axis on the screen.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Axes")
CommandApi.Option ("AxesXAxisShow", "True")
CommandApi.Do()
Used by: Axes module
See Also