Shape.Shadow Property (Word)

Returns a ShadowFormat object that represents the shadow formatting for the specified shape.

Syntax

expression .Shadow

expression Required. A variable that represents a Shape object.

Example

This example adds an arrow with shadow formatting to the active document.

Set myShape = ActiveDocument.Shapes _ 
 .AddShape(Type:=msoShapeRightArrow, _ 
 Left:=90, Top:=79, Width:=64, Height:=43) 
myShape.Shadow.Type = msoShadow5

See Also

Concepts

Shape Object

Shape Object Members