This topic has not yet been rated - Rate this topic

Shape.Flip Method (Excel)

Flips the specified shape around its horizontal or vertical axis.

expression .Flip(FlipCmd)

expression A variable that represents a Shape object.

Parameters

Name

Required/Optional

Data Type

Description

FlipCmd

Required

MsoFlipCmd

Specifies whether the shape is to be flipped horizontally or vertically.

This example adds a triangle to myDocument, duplicates the triangle, and then flips the duplicate triangle vertically and makes it red.

Set myDocument = Worksheets(1) 
With myDocument.Shapes.AddShape(msoShapeRightTriangle, _ 
        10, 10, 50, 50).Duplicate 
    .Fill.ForeColor.RGB = RGB(255, 0, 0) 
    .Flip msoFlipVertical 
End With
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.