The AnnotationAntialias option turns on or off antialiasing for the Annotation text. The OptionValue is set to True or False. True turns on antialiasing. False turns off antialiasing.
Syntax
object.Construct(“CreateModule”)
object.Option(“Type”, “Annotation”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “Annotation”)
object.Option("AnnotationAntialias", “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to turn off antialiasing on the annotation text.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Annotation")
CommandApi.Option ("AnnotationAntialias", "False")
CommandApi.Do()
Used by: Annotation module
See Also