AxesTitleHeight Option

 

The AxesTitleHeight option changes the font height of the titles for the axes. The OptionValue is set to any number between 1.192092896e-007 to 10.  

 

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

object.Do() or object.DoOnce()

 

Example

This example shows how to set the title height.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("AxesTitleHeight", "0.7")

  CommandApi.Do()

 

Used by: Axes module

 

 

See Also

Automation Model