AxesShowArrows Option

 

The AxesShowArrows option turns the display of the arrows on the axes on or off. The OptionValue is set to True or False. True turns the arrows on. False turns the arrows 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(“AxesShowArrows”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example shows how to turn on display of arrowheads at ends of axes.

 

  CommandApi.Construct ("ModifyModule")

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

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

  CommandApi.Do()

 

Used by: Axes module

 

 

See Also

Automation Model