bdeSetAnnotationTextPosition

Sets the position for a text annotation.

Syntax

bdeSetAnnotationTextPosition(annotation, xPos, yPos)

Inputs

annotation
The annotation that will have it's position set.
Type: hwdcAnnotation
xPos
The x position to set for the annotation.
Type: double
yPos
The y position to set for the annotation.
Type: double

Examples

Set the position for an annotation:

          annotation = bdeCreateAnnotationText('annotation1', 'This is a new annotation');
          bdeSetAnnotationTextPosition(annotation, 2, 2);