AxesShowGrid Option

 

The AxesShowGrid option turns on or off the display of the axis grid lines. The OptionValue is set to True or False. True displays the grid lines. False turns the grid lines off.

 

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(“AxesShowGrid”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example shows how to turn on the X, Y, and Z axis grid lines.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("AxesShowGrid", "True")

  CommandApi.Do()

 

Used by: Axes module

 

 

See Also

Automation Model