[]
Gets or sets the font style for the content of the element.
Returns true if the font style is italic; otherwise,
returns false.
public bool Italic { get; set; }
Public Property Italic As Boolean
TextFormatInfo textFormat = new TextFormatInfo();
textFormat.Italic = true;
bool italic = textFormat.Italic;