Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Sets or returns whether text will be italicized.{excerpt}
{signature:C#}
 public boolean Italic{ get; set; }
{signature}{signature:vb.net}
Public Property Italic() As Boolean
{signature}
{example}{code:csharp|title=C#}

          //--- Get Italic
          bool isItalic = fnt.Italic;

          //--- Set Italic
          fnt.Italic = true;
        {code}
{code:vb.net|title=vb.net}

          '--- Get Italic
          Dim isItalic As Boolean = fnt.Italic

          '--- Set Italic
          fnt.Italic = True
        {code}

{example}