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

...

Description

Excerpt

Sets or returns a boolean that represents if a character run has the All caps effect, formatting lowercase text as capital letters and reducing their size. All caps formatting does not affect numbers, punctutation, non-alphabetic chacters, or uppercase letters.

Signature
C#
C#
 public boolean Caps{ get; set; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public Property Caps() As Boolean
{signature}
{remarks}MS Word 
Remarks

MS Word equivalent:

Format

menu

>

Font...

>

Font

tab

>

Effects

section

>

All

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

caps

Example
Code Block
csharp
csharp
titleC#


          //--- Return Caps
          bool caps = oFont.Caps;

          //--- Set Caps
          oFont.Caps = true;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


          '--- Return Caps
          Dim caps As Boolean = oFont.Caps

          '--- Set Caps
          oFont.Caps = True
        
{code} {example}