Share via


Shape.HorizontalFlip Property

PowerPoint Developer Reference

Returns whether the specified shape is flipped around the horizontal axis. Read-only.

Syntax

expression.HorizontalFlip

expression   A variable that represents a Shape object.

Return Value
MsoTriState

Remarks

The value of the HorizontalFlip property can be one of these MsoTriState constants.

Constant Description
msoFalse The specified shape is not flipped around the horizontal axis.
msoTrue The specified shape is flipped around the horizontal axis.

Example

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

Visual Basic for Applications
  Set myDocument = ActivePresentation.Slides(1)
For Each s In myDocument.Shapes
    If s.HorizontalFlip Then s.Flip msoFlipHorizontal
    If s.VerticalFlip Then s.Flip msoFlipVertical
Next

See Also