bdeSetAnnotationTextFontItalic

Sets the annotation to be either italic or not italic, using isItalic.

Syntax

bdeSetAnnotationTextFontItalic(annotation, isItalic)

Inputs

annotation
The annotation to set whether or not it is italic.
Type: hwdcAnnotation
isItalic
Boolean representing whether or not to make the annotation italic. true to make the text italic, false to make the text not italic.
Type: Boolean

Examples

Set a text annotation to be italic:

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