Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Sets or returns whether text will be displayed in bold face.

{signature}
{example}{code:csharp|title=C#}

          //--- Get Bold
          bool isBold = fnt.Bold;

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

          '--- Get Bold
          Dim isBold As Boolean = fnt.Bold

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

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns whether text will be displayed in bold face.{excerpt}
{signature:C#}
 public boolean Bold{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property Bold() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle