Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
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.