Publisher) (ThreeDFormat.ExtrusionColor 屬性
會傳回代表圖案立體化之色彩的 ColorFormat 物件。
語法
運算式。ExtrusionColor
表達 代表 ThreeDFormat 物件的 變數。
傳回值
ColorFormat
範例
本範例在目前出版物中新增一個橢圓,然後指定該橢圓的立體化深度為 50 點,再將立體化部分設為紫色。
Dim shpNew As Shape
' Set a reference to a new oval.
Set shpNew = ActiveDocument.Pages(1).Shapes _
.AddShape(Type:=msoShapeOval, _
Left:=90, Top:=90, Width:=90, Height:=40)
' Format the 3D properties of the oval.
With shpNew.ThreeD
.Visible = True
.Depth = 50
.ExtrusionColor.RGB = RGB(255, 100, 255)
End With
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。