Font.Shadow Property (Word)

True if the specified font is formatted as shadowed. Read/write Long.

Syntax

expression .Shadow

expression Required. A variable that represents a Font object.

Remarks

This property can be True, False, or wdUndefined.

Example

This example applies shadow and bold formatting to the selection.

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

See Also

Concepts

Font Object Members

Font Object