Sets or returns a boolean that represents if a character run is italicized.
boolean
public boolean Italic{ get; set; }
Public Property Italic() As Boolean
MS Word equivalent: Format menu > Font... > Font tab > Font section > Font style: > Italic (or Bold Italic if Bold = true)
//--- Return Italic bool italic = oFont.Italic; //--- Set Italic oFont.Italic = true;
'--- Return Italic Dim italic As Boolean = oFont.Italic '--- Set Italic oFont.Italic = True