Share via


Shape.Shadow Property

Word Developer Reference

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.

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

See Also