Shape.IncrementRotation 方法 (Word)
使指定的形状绕 Z 轴旋转指定的角度。
语法
expression。 IncrementRotation
( _Increment_
)
expression 是必需的。 一个代表 Shape 对象的变量。
参数
名称 | 必需/可选 | 数据类型 | 说明 |
---|---|---|---|
Increment | 必需 | Single | 指定形状的水平旋转量,以度为单位。 为正值时顺时针旋转形状,为负值时逆时针旋转形状。 |
备注
使用 旋转 属性来设置形状的绝对旋转。 若要旋转三维形状围绕 x 轴或 y 轴,使用 IncrementRotationX 或 IncrementRotationY 的 ThreeDFormat 对象。
示例
本示例复制 myDocument 上的第一个形状,设置副本的填充,向右移动 70 磅,向上移动 50 磅,并顺时针旋转 30 度。
Set myDocument = ActiveDocument
With myDocument.Shapes(1).Duplicate
.Fill.PresetTextured msoTextureGranite
.IncrementLeft 70
.IncrementTop -50
.IncrementRotation 30
End With
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。