Italic Property
Italic
A bool value indicates whether the font is italic.
Declaration
public bool Italic { readonly get; set; }
Public Property Italic As Boolean
Examples
FontInfo fontInfo = new FontInfo();
fontInfo.Italic = true;
bool isItalic = fontInfo.Italic;