bdeSetAnnotationTextFontBold

Sets the annotation text font to be bold or not bold using isBold.

Syntax

bdeSetAnnotationTextFontBold(annotation, isBold)

Inputs

annotation
The annotation in which the text font is to be set as bold or not bold.
Type: BDE annotation
isBold
Boolean that sets the annotation text font to be bold or not bold; true = bold, false = not bold.
Type: Boolean

Examples

Set the annotation text font to be bold:

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