Visible Property

Applies To

Application object, BulletFormat object, FillFormat object, HeaderFooter object, LineFormat object, ShadowFormat object, Shape object, ShapeRange collection object, ThreeDFormat object.

Description

True if the specified object, or the formatting applied to the specified object, is visible. Read/write Long.

See Also

Activate method, Hidden property.

Example

This example sets the horizontal and vertical offsets for the shadow of shape three on myDocument. The shadow is offset 5 points to the right of the shape and 3 points above it. If the shape doesn't already have a shadow, this example adds one to it.

Set myDocument = ActivePresentation.Slides(1)
With myDocument.Shapes(3).Shadow
    .Visible = True
    .OffsetX = 5
    .OffsetY = -3
End With