ShadowFormat Object

Description

Represents shadow formatting for a shape.

Using the ShadowFormat Object

Use the Shadow property to return a ShadowFormat object. The following example adds a shadowed rectangle to the active document. The semitransparent, blue shadow is offset 5 points to the right of the rectangle and 3 points above it.

With ActiveDocument.Shapes.AddShape(msoShapeRectangle, 50, 50, 100, _
        200).Shadow
    .ForeColor.RGB = RGB(0, 0, 128)
    .OffsetX = 5
    .OffsetY = -3
    .Transparency = 0.5
    .Visible = True
End With
Properties

Application property, Creator property, ForeColor property, Obscured property, OffsetX property, OffsetY property, Parent property, Transparency property, Type property, Visible property.

Methods

IncrementOffsetX method, IncrementOffsetY method.


Send feedback to MSDN.Look here for MSDN Online resources.