Word) (ThreeDFormat.RotationY 屬性
會傳回或設定立體圖案繞 y 軸旋轉的角度。 可讀寫 單一 。
語法
expression。 RotationY
表達 會傳回 'ThreeDFormat' 物件的運算式。
註解
RotationY 屬性可以是介於-90 到 90 值。 正值代表順向左; 旋轉為負值表示向右旋轉。
若要設定立體圖案繞 x 軸的旋轉角度,請使用 ThreeDFormat 物件的 RotationX 屬性。 若要設定立體圖案繞 z 軸的旋轉角度,請使用 Shape 物件的 Rotation 屬性。 若要變更的立體化延伸路徑方向但不旋轉其中的延伸部分正面,請使用 SetExtrusionDirection 方法。
範例
本範例會在 myDocument 中新增三個相同的立體化橢圓,並分別將這三個橢圓繞 y 軸的旋轉角度設為 -30、0 及 30 度。
Set myDocument = ActiveDocument
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 支援與意見反應。