bdeGetAnnotationTextContent

Gets the text content of an annotation.

Syntax

annotation = bdeGetAnnotationTextContent(annotation)

Inputs

annotation
The annotation from which to get the text.
Type: BDE annotation

Outputs

annotationText
The text content of the annotation.
Type: string

Examples

Get the text content of an annotation:

          annotation = bdeCreateAnnotationText('annotation1', 'Annotation text');
          annotationText = bdeGetAnnotationTextContent(annotation);
        

          
            annotationText = Annotation text