AnnotationOrigin Option

 

The AnnotationOrigin option changes the bounding box line width around Annotation. The OptionValue is 0, 1, 2, or 3. 0 is for Upper Left, 1 is for Upper Right, 2 is for Lower Left, and 3 is for Lower Right.

 

Syntax

object.Construct(“CreateModule”)

object.Option(“Type”, “Annotation”)

object.Do() or object.DoOnce()

 

object.Construct(“ModifyModule”)

object.Option(“Module”, “Annotation”)

object.Option("AnnotationOrigin", “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example shows how to change the annotation origin location.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("AnnotationOrigin", "2")

  CommandApi.Do()

 

Used by: Annotation module

 

 

See Also

Automation Model