ChartFont.FontStyle Property (Word)
Returns or sets the font style. Read/write String.
Version Information
Version Added: Word 2007
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