AxesYAxisFlipLabelsX Option

 

The AxesYAxisFlipLabelsX option flips the axis labels in the horizontal direction. The OptionValue is set to True or False. True flips the labels horizontally. False does not.

 

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

object.Do() or object.DoOnce()

 

Example

This example shows how to flip the Y Axis labels in the horizontal direction.

 

  CommandApi.Construct ("ModifyModule")

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

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

  CommandApi.Do()

 

Used by: Axes module

 

 

See Also

Automation Model