Share via


Chart.Walls Property (PowerPoint)

Returns the walls of the 3-D chart. Read-only Walls.

Version Information

Version Added: PowerPoint 2007

Syntax

expression .Walls

expression A variable that represents a Chart object.

Example

Note

Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.

The following example sets the color of the wall border of the first chart in the active document to red. You should run the example on a 3-D chart.

With ActiveDocument.InlineShapes(1)

    If .HasChart Then

        .Chart.Walls.Border. _

            ColorIndex = 3

    End If

End With

See Also

Concepts

Chart Object Members

Chart Object