Partager via


ChartFont.FontStyle Property (PowerPoint)

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

Version Information

Version Added: PowerPoint 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

Note

Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.

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

Concepts

ChartFont Object Members

ChartFont Object