主题
IncrementRotation (方法)
使指定的形状按指定度数值绕 Z 轴旋转。使用 Rotation属性可设置形状的绝对转角。
说明
如果要将三维形状绕 X 轴或 Y 轴旋转,请分别使用 IncrementRotationX 方法或 IncrementRotationY 方法。
参数
属性 | 数据类型 | 必填 | 说明 |
---|---|---|---|
Increment | float | 必填 | 指定形状的水平旋转量,以度为单位。正值为顺时针旋转形状,负值逆时针旋转形状。 |
示例
javascript
/*本示例将第一张工作表中新建的ShapeRange对象设置填充,再向右移 70 磅、向上移 50 磅,然后顺时针旋转 30 度。*/
function test() {
let shpRange = Application.Worksheets.Item(1).Shapes.Range([1, 2])
shpRange.Fill.PresetTextured(msoTextureGranite)
shpRange.IncrementLeft(70)
shpRange.IncrementTop(-50)
shpRange.IncrementRotation(30)
}
javascript
/*本示例将活动工作表的所有形状向上移 100 磅,然后逆时针旋转 30 度。*/
function test() {
let shapes = ActiveSheet.Shapes
shapes.SelectAll()
Selection.ShapeRange.IncrementTop(-100)
Selection.ShapeRange.IncrementRotation(-30)
}