bdeGetAnnotationTextName

Gets the name of an annotation.

Syntax

annotationName = bdeGetAnnotationTextName(annotation)

Inputs

annotation
The annotation to get the name of.
Type: hwdcAnnotation

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