Excel (的 Shape.ThreeD 屬性)
會傳回 ThreeDFormat 物件,其中包含指定圖案的 3D 效果格式設定屬性。 唯讀。
運算式。ThreeD
表達 代表 Shape 物件的變數。
本範例會設定套用至 myDocument上第一個圖案之 3D 效果的深度、立體化色彩、立體化方向和光源方向。
Set myDocument = Worksheets(1)
With myDocument.Shapes(1).ThreeD
.Visible = True
.Depth = 50
.ExtrusionColor.RGB = RGB(255, 100, 255)
' RGB value for purple
.SetExtrusionDirection msoExtrusionTop
.PresetLightingDirection = msoLightingLeft
End With
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。