Shape.HorizontalFlip Property (Word)
Indicates that a shape has been flipped horizontally. Read-only MsoTriState.
Syntax
expression .HorizontalFlip
expression Required. A variable that represents a Shape object.
Example
This example restores each shape in the active document to its original state if it has been flipped horizontally or vertically.
Sub FlipShape()
Dim shpFlip As Shape
For Each shpFlip In ActiveDocument.Shapes
If shpFlip.HorizontalFlip Then shpFlip.Flip msoFlipHorizontal
If shpFlip.VerticalFlip Then shpFlip.Flip msoFlipVertical
Next
End Sub