Word (的 ThreeDFormat.RotationX 屬性)
會傳回或設定立體圖案繞 x 軸旋轉的角度。 可讀寫 單一 。
語法
expression。 RotationX
表達 會傳回 'ThreeDFormat' 物件的運算式。
註解
RotationX 屬性可以是介於-90 到 90 值。 正值代表順右旋轉 ;為負值表示向下的旋轉角度。
若要設定立體圖案繞 y 軸的旋轉角度,請使用 ThreeDFormat 物件的 RotationY 屬性。 若要設定立體圖案繞 z 軸的旋轉角度,請使用 Shape 物件的 Rotation 屬性。 若要變更的立體化延伸路徑方向但不旋轉其中的延伸部分正面,請使用 SetExtrusionDirection 方法。
範例
本範例將三個相同的立體橢圓加入使用中文件,並將他們繞 x 軸的旋轉角度分別設定為 - 30、0 和 30 度。
With ActiveDocument.Shapes
With .AddShape(msoShapeOval, 30, 60, 50, 25).ThreeD
.Visible = True
.RotationX = -30
End With
With .AddShape(msoShapeOval, 90, 60, 50, 25).ThreeD
.Visible = True
.RotationX = 0
End With
With .AddShape(msoShapeOval, 150, 60, 50, 25).ThreeD
.Visible = True
.RotationX = 30
End With
End With
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。