bdeGetAnnotationTextColor

Returns the color of a given annotation.

Syntax

annotationColor = bdeGetAnnotationTextColor(link)

Inputs

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

Outputs

color
The color of the annotation.
Type: hwt::Color

Examples

Get the color of a given annotation:

          annotation = bdeCreateAnnotationText('annotation1', 'Annotation text');
          annotationColor = bdeGetAnnotationTextColor(annotation);
        

          
            annotationColor = struct [
            alpha: 255
            blue: 0
            green: 0
            red: 255
            ]