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

See also

Shape Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.