Skip to content

Latest commit

 

History

History
65 lines (36 loc) · 1.27 KB

PowerPoint.Shape.VerticalFlip.md

File metadata and controls

65 lines (36 loc) · 1.27 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Shape.VerticalFlip property (PowerPoint)
vbapp10.chm547039
vbapp10.chm547039
PowerPoint.Shape.VerticalFlip
56bf36e4-49df-5ae5-855c-3275d634dee4
06/08/2017
medium

Shape.VerticalFlip property (PowerPoint)

Determines whether the specified shape is flipped around the vertical axis. Read-only.

Syntax

expression.VerticalFlip

expression A variable that represents a Shape object.

Return value

MsoTriState

Remarks

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

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

Example

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

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

Shape Object

[!includeSupport and feedback]