Excel) (ThreeDFormat 对象
代表形状的三维格式。
备注
不能应用三维格式对某些类型的形状,如倾斜的形状或多个不连续的路径。 属性中的大多数,这种形状的 ThreeDFormat 对象的方法将会失败。
示例
使用 Shape 对象的 ThreeD 属性可返回 ThreeDFormat 对象。 以下示例向 myDocument 添加一个椭圆,然后指定椭圆延伸至 50 磅深度,延伸为紫色。
Set myDocument = Worksheets(1)
Set myShape = myDocument.Shapes.AddShape(msoShapeOval, _
90, 90, 90, 40)
With myShape.ThreeD
.Visible = True
.Depth = 50
.ExtrusionColor.RGB = RGB(255, 100, 255)
' RGB value for purple
End With
方法
- IncrementRotationHorizontal
- IncrementRotationVertical
- IncrementRotationX
- IncrementRotationY
- IncrementRotationZ
- ResetRotation
- SetExtrusionDirection
- SetPresetCamera
- SetThreeDFormat
属性
- 应用程序
- BevelBottomDepth
- BevelBottomInset
- BevelBottomType
- BevelTopDepth
- BevelTopInset
- BevelTopType
- ContourColor
- ContourWidth
- Creator
- Depth
- ExtrusionColor
- ExtrusionColorType
- FieldOfView
- LightAngle
- Parent
- Perspective
- PresetCamera
- PresetExtrusionDirection
- PresetLighting
- PresetLightingDirection
- PresetLightingSoftness
- PresetMaterial
- PresetThreeDFormat
- ProjectText
- RotationX
- RotationY
- RotationZ
- Visible
- Z
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。