Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
True if the specified shape is flipped around the vertical axis. Read-only MsoTriState.
Syntax
expression .VerticalFlip
expression Required. A variable that represents a Shape object.
Example
This example restores each shape on myDocument to its original state if it has 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