AxesThickness Option

 

The AxesThickness option changes the thickness of the axes. The OptionValue is set to any number between the values of 0 and 15. The larger the value, the thicker 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(“AxesThickness”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example shows how to set the thickness for the X, Y, and Z axes.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("AxesThickness", "2.3")

  CommandApi.Do()

 

Used by: Axes module

 

 

See Also

Automation Model