Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
58 lines (29 loc) · 976 Bytes

chartfont-italic-property-powerpoint.md

File metadata and controls

58 lines (29 loc) · 976 Bytes
title keywords f1_keywords ms.prod api_name ms.assetid ms.date
ChartFont.Italic Property (PowerPoint)
vbapp10.chm704006
vbapp10.chm704006
powerpoint
PowerPoint.ChartFont.Italic
c62ad4c5-c7b3-58d8-8d37-540a8a123ce2
06/08/2017

ChartFont.Italic Property (PowerPoint)

True if the font style is italic. Read/write Boolean.

Syntax

expression. Italic

expression A variable that represents a ChartFont object.

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 to italic for all characters in the title of the first chart in the active document.

With ActiveDocument.InlineShapes(1)

    If .HasChart Then

        .Chart.Title.Characters.Font.Italic = True

    End If

End With

See also

Concepts

ChartFont Object