bdeSetAnnotationTextFontBold

Sets the annotation to be either bold or not bold, using isBold.

Syntax

bdeSetAnnotationTextFontBold(annotation, isBold)

Inputs

annotation
The annotation that will have it's text boldness set.
Type: hwdcAnnotation
isBold
The boldness to set for the text annotation. true to make the text bold, false to make the text not bold.
Type: Boolean

Examples

Set the boldness of a text annotation:

          annotation = bdeCreateAnnotationText('annotation1', 'This is a new annotation');
          bdeSetAnnotationTextFontBold(annotation, true);