ThreeDFormat.SetThreeDFormat Method

Word Developer Reference

Sets the preset extrusion format.

Syntax

expression.SetThreeDFormat(PresetThreeDFormat)

expression   Required. A variable that represents a ThreeDFormat object.

Parameters

Name Required/Optional Data Type Description
PresetThreeDFormat Required MsoPresetThreeDFormat Specifies a preset extrusion format that corresponds to one of the options (numbered from left to right, top to bottom) displayed when you click the 3-D button on the Drawing toolbar.

Remarks

Each preset extrusion format contains a set of preset values for the various properties of the extrusion. This method sets the PresetThreeDFormat property to the format specified by the PresetThreeDFormat argument.

Bb209511.vs_note(en-us,office.12).gif  Note
Specifying msoPresetThreeDFormatMixed for the PresetThreeDFormat argument causes an error.

Example

This example adds an oval to the active document and sets its extrusion format to 3D Style 12.

Visual Basic for Applications
  With ActiveDocument.Shapes.AddShape(msoShapeOval, _
        30, 30, 50, 25).ThreeD
    .Visible = True
    .SetThreeDFormat msoThreeD12
End With

See Also