Italic Property
Italic returns or sets the italic style. It creates oblique text. It has a Boolean value, which is 'True', when the text style is italic and 'False', when the text style is not italic.
Syntax
object.Italic
object. Italic = Italic
Parameter |
Type |
Description |
Italic |
Boolean |
required |
Example 1
This example demonstrates how to return whether or not a font is italicized.
Debug.Print FontFormat.Italic
Example 2
This example demonstrates how to italicize a font.
FontFormat.Italic = True
Used by: FontFormat object