Share via


ThreeDFormat Object [Publisher 2003 VBA Language Reference]

Multiple objects
ThreeDFormat
ColorFormat

Represents a shape's three-dimensional formatting.

Using The ThreeDFormat Object

Use the ThreeD property to return a ThreeDFormat object. This example sets the depth, extrusion color, extrusion direction, and lighting direction for the 3-D effects applied to shape one in the active publication.

Sub SetThreeDSettings()
    Dim tdfTemp As ThreeDFormat

    Set tdfTemp = _
        ActiveDocument.Pages(1).Shapes(1).ThreeD

    With tdfTemp
        .Visible = True
        .Depth = 50
        .ExtrusionColor.RGB = RGB(255, 100, 255)
        .SetExtrusionDirection _
            PresetExtrusionDirection:=msoExtrusionTop
        .PresetLightingDirection = msoLightingLeft
    End With
End Sub

Remarks

You cannot apply three-dimensional formatting to some kinds of shapes, such as beveled shapes. Most of the properties and methods of the ThreeDFormat object for such a shape will fail.

Properties | Application Property | Depth Property | ExtrusionColor Property | ExtrusionColorType Property | Parent Property | Perspective Property | PresetExtrusionDirection Property | PresetLightingDirection Property | PresetLightingSoftness Property | PresetMaterial Property | PresetThreeDFormat Property | RotationX Property | RotationY Property | Visible Property

Methods | IncrementRotationX Method | IncrementRotationY Method | ResetRotation Method | SetExtrusionDirection Method | SetThreeDFormat Method

Parent Objects | Shape Object | ShapeRange Collection

Child Objects | ColorFormat Object