bdeIsAnnotationTextFontBold
Returns whether or not an annotation text font is bold.
Syntax
isBold = bdeIsAnnotationTextFontBold(annotation)
Inputs
- annotation
 - The annotation in which the text font is bold or not bold.
 
Outputs
- isBold
 - Returns whether or not the text font is bold in an annotation; 1 = bold, 0 = not bold.
 
Examples
          annotation = bdeCreateAnnotationText('annotation1', 'Annotation text');
          isBold = bdeIsAnnotationTextFontBold(annotation);
        
        
          
            isBold = 0