The AxesAntialias option turns on or off antialiasing for the Axes text. The OptionValue is set to True or False. True turns on antialiasing. False turns off antialiasing.
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("AxesAntialias", “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to turn off antialiasing on the Axes text.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Axes")
CommandApi.Option ("AxesAntialias", "False")
CommandApi.Do()
Used by: Axes module
See Also