bdeSetAnnotationTextContent

Sets the content of the annotation text.

Syntax

bdeSetAnnotationTextContent(annotation, content)

Inputs

annotation
The annotation in which the content is set.
Type: BDE annotation
content
The content that is to be set for the annotation text.
Type: string

Examples

Set the content of the text in an annotation:

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