Font.AllCaps property (Word)

True if the font is formatted as all capital letters. Read/write Long.

Syntax

expression. AllCaps

expression A variable that represents a Font object.

Remarks

Returns True, False, or wdUndefined (a mixture of True and False). Can be set to True, False, or wdToggle (reverses the current setting).

Setting AllCaps to True sets SmallCaps to False, and vice versa.

Example

This example checks the third paragraph in the active document for text formatted as all capital letters.

If ActiveDocument.Paragraphs(3).Range.Font.AllCaps = True Then 
 MsgBox "Text is all caps." 
Else 
 MsgBox "Text is not all caps." 
End if

This example formats the selected text as all capital letters.

If Selection.Type = wdSelectionNormal Then 
 Selection.Font.AllCaps = True 
Else 
 MsgBox "You need to select some text." 
End If

See also

Font Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.