ShapeRange.Shadow property (PowerPoint)
Returns a ShadowFormat object that contains shadow formatting properties for the specified shapes. Read-only.
Syntax
expression.Shadow
expression A variable that represents a ShapeRange object.
Example
This example adds a shadowed rectangle to slide one in the active presentation. The blue, embossed shadow is offset 3 points to the right of and 2 points down from the rectangle.
Set myShape = Application.ActivePresentation.Slides(1).Shapes
With myShape.AddShape(msoShapeRectangle, 10, 10, 150, 90).Shadow
.Type = msoShadow17
.ForeColor.RGB = RGB(0, 0, 128)
.OffsetX = 3
.OffsetY = 2
End With
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.