Edit

TextEffectFormat.FontItalic property (Word)

Italicizes WordArt text. Read/write MsoTriState.

Syntax

expression. FontItalic

expression Required. A variable that represents a 'TextEffectFormat' object.

Example

This example sets the font to italic for the shape named "WordArt 4" in the active document.

Sub ItalicizeWordArt() 
 ActiveDocument.Shapes("WordArt 4") _ 
 .TextEffect.FontItalic = msoTrue 
End Sub

See also

TextEffectFormat 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.