ChartFont.FontStyle property (Word)

Returns or sets the font style. Read/write String.

Syntax

expression.FontStyle

expression A variable that represents a 'ChartFont' object.

Remarks

Changing this property may affect other ChartFont properties (such as Bold and Italic).

Example

The following example sets the font style for the title of the first chart in the active document to bold and italic.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 .Chart.Title.Font.FontStyle = "Bold Italic" 
 End If 
End With

See also

ChartFont Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.