The AnnotationSize option changes the size of the Annotation text. The OptionValue is set to a number between 4 and 72.
Syntax
object.Construct(“CreateModule”)
object.Option(“Type”, “Annotation”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “Annotation”)
object.Option("AnnotationSize", “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to change the annotation text size.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Annotation")
CommandApi.Option ("AnnotationSize", "20")
CommandApi.Do()
Used by: Annotation module
See Also