Excel) (ThreeDFormat.RotationY 属性

以度为单位返回或设置具有延伸的形状绕 y 轴的转角。 可以是 -90 到 90 的值。 正值表示向左; 旋转负值表示向右旋转。 读/写 单个

语法

表达式RotationY

表达 一个代表 ThreeDFormat 对象的变量。

备注

若要设置围绕 x 轴延伸的形状的旋转,请使用 RotationX 属性。

若要设置延伸形状绕 z 轴的旋转角度,使用 Shape 对象的 旋转 属性。

不旋转的延伸正面改变方向的延伸经过的路径,请使用 SetExtrusionDirection 方法。

示例

本示例向 myDocument 添加三个相同的延伸椭圆,并分别将其围绕 y 轴的旋转设置为 -30、0 和 30 度。

Set myDocument = Worksheets(1) 
With myDocument.Shapes 
 With .AddShape(msoShapeOval, 30, 30, 50, 25).ThreeD 
 .Visible = True 
 .RotationY = -30 
 End With 
 With .AddShape(msoShapeOval, 30, 70, 50, 25).ThreeD 
 .Visible = True 
 .RotationY = 0 
 End With 
 With .AddShape(msoShapeOval, 30, 110, 50, 25).ThreeD 
 .Visible = True 
 .RotationY = 30 
 End With 
End With

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。