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 a boolean that represents if a character run has the Small caps effect, formatting lowercase text as capital letters and reducing their size. Small caps formatting does not affect numbers, punctutation, non-alphabetic chacters, or uppercase letters.

 caps

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

          //--- Return SmallCaps
          bool smallCaps = oFont.SmallCaps;

          //--- Set SmallCaps
          oFont.SmallCaps = true;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Return SmallCaps
          Dim smallCaps As Boolean = oFont.SmallCaps

          '--- Set SmallCaps
          oFont.SmallCaps = True
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns a {{boolean}} that represents if a character run has the Small caps effect, formatting lowercase text as capital letters and reducing their size. Small caps formatting does not affect numbers, punctutation, non\-alphabetic chacters, or uppercase letters.{excerpt}
{signature:C#}
 public boolean SmallCaps{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property SmallCaps() As Boolean
Remarks
MS Word
{signature}
{remarks}MS Word equivalent: Format menu > Font... > Font tab > Effects section > Small
caps
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle