Objeto ThreeDFormat (Excel)
Representa el formato tridimensional de una forma.
Comentarios
No se puede aplicar formato tridimensional a algunos tipos de formas, como formas biseladas o separados de varias rutas de acceso. Se producirá un error de la mayoría de las propiedades y métodos del objeto ThreeDFormat para dicha forma.
Ejemplo:
Utilice la propiedad ThreeD del objeto Shape para devolver un objeto ThreeDFormat . En el ejemplo siguiente se agrega un óvalo a myDocument y, a continuación, se especifica que el óvalo se extruya a una profundidad de 50 puntos y que la extrusión sea púrpura.
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
Métodos
- IncrementRotationHorizontal
- IncrementRotationVertical
- IncrementRotationX
- IncrementRotationY
- IncrementRotationZ
- ResetRotation
- SetExtrusionDirection
- SetPresetCamera
- SetThreeDFormat
Propiedades
- Application
- 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
Vea también
Soporte técnico y comentarios
¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.