AxesColorGrid Option

 

The AxesColorGrid option changes the color of the X, Y, and Z grid lines to the specified color. The OptionValue is set to any color name.  This command has been deprecated and should be replaced with AxesGridColor option.

 

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

object.Do() or object.DoOnce()

 

Example

This example shows how to set the X, Y, and Z axis grid line color.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("AxesColorGrid", "Pale Yellow")

  CommandApi.Do()

 

Used by: Axes module

 

 

See Also

Automation Model