bdeSetAnnotationTextFontItalic

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

Syntax

bdeSetAnnotationTextFontItalic(annotation, isItalic)

Inputs

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

Examples

Set the annotation text font to be italic:

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