bdeGetAnnotationTextName

Gets the name of an annotation.

Syntax

annotationName = bdeGetAnnotationTextName(annotation)

Inputs

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

Outputs

annotationName
The name of the annotation.
Type: string

Examples

Get the name of an annotation:

          annotation = bdeCreateAnnotationText('annotation1', 'Annotation text')
          annotationName = bdeGetAnnotationTextName(annotation)
        

          
            annotationName = annotation1