HorizontalFlip Property

Applies To

Shape object, ShapeRange collection object.

Description

True if the specified shape is flipped around the horizontal axis. Read-only Long.

Example

This example restores each shape on myDocument to its original state if it's been flipped horizontally or vertically.

For Each s In ActiveDocument.Shapes
    If s.HorizontalFlip Then s.Flip msoFlipHorizontal
    If s.VerticalFlip Then s.Flip msoFlipVertical
Next