bdeSetAnnotationTextContent
Sets the content of the annotation text.
Syntax
bdeSetAnnotationTextContent(annotation, content)
Inputs
- annotation
 - The annotation in which the content is set.
 - content
 - The content that is to be set for the annotation text.
 
Examples
          annotation = bdeCreateAnnotationText('annotation1', 'This is a new annotation');
          bdeSetAnnotationTextContent(annotation, 'This is the changed annotation');
          annotationText = bdeGetAnnotationTextContent(annotation);