bdeSetAnnotationTextContext

Sets the text content for an annotation.

Syntax

bdeSetAnnotationTextContext(annotation, content)

Inputs

annotation
The annotation that will have it's text content set.
Type: hwdcAnnotation
content
The content to set for the text content of annotation.
Type: string

Examples

Set the text content for an annotation:

          annotation = bdeCreateAnnotationText('annotation1', 'This is a new annotation');
          bdeSetAnnotationTextContext(annotation, 'This is the changed annotation');
          annotationText = bdeGetAnnotationTextContent(annotation);