全部显示

VerticalFlip 属性

       

如果该属性值为 True,则指定的图形围绕垂直轴进行翻转。MsoTriState,只读。

expression.VerticalFlip

expression   必需。该表达式返回“应用于”列表中的一个对象。

示例

本示例将 myDocument 中所有曾进行水平或垂直翻转的图形还原至初始状态。

For Each s In ActiveDocument.Shapes
    If s.HorizontalFlip Then s.Flip msoFlipHorizontal
    If s.VerticalFlip Then s.Flip msoFlipVertical
Next