Skip to content

Latest commit

 

History

History
62 lines (34 loc) · 1.15 KB

PowerPoint.Shape.ThreeD.md

File metadata and controls

62 lines (34 loc) · 1.15 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Shape.ThreeD property (PowerPoint)
vbapp10.chm547036
vbapp10.chm547036
PowerPoint.Shape.ThreeD
16f0bc6a-ae6c-f4c3-9e3c-641f069eb7f6
06/08/2017
medium

Shape.ThreeD property (PowerPoint)

Returns a ThreeDFormat object that contains 3D - effect formatting properties for the specified shape. Read-only.

Syntax

expression.ThreeD

expression A variable that represents a Shape object.

Return value

ThreeDFormat

Example

This example sets the depth, extrusion color, extrusion direction, and lighting direction for the 3D effects applied to shape one on myDocument.

Set myDocument = ActivePresentation.Slides(1)

With myDocument.Shapes(1).ThreeD

    .Visible = True

    .Depth = 50

    'RGB value for purple

    .ExtrusionColor.RGB = RGB(255, 100, 255)

    .SetExtrusionDirection msoExtrusionTop

    .PresetLightingDirection = msoLightingLeft

End With

See also

Shape Object

[!includeSupport and feedback]