다음을 통해 공유


Shape.HorizontalFlip Property (Excel)

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

Syntax

.HorizontalFlip

A variable that represents a Shape object.

Example

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

Set myDocument = Worksheets(1) 
For Each s In myDocument.Shapes 
    If s.HorizontalFlip Then s.Flip msoFlipHorizontal 
    If s.VerticalFlip Then s.Flip msoFlipVertical 
Next

참고 항목

개념

Shape Object

Shape Object Members