Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
57 lines (30 loc) · 1002 Bytes

chart-walls-property-powerpoint.md

File metadata and controls

57 lines (30 loc) · 1002 Bytes
title keywords f1_keywords ms.prod api_name ms.assetid ms.date
Chart.Walls Property (PowerPoint)
vbapp10.chm684047
vbapp10.chm684047
powerpoint
PowerPoint.Chart.Walls
e4c019c0-41de-988b-b5c7-009fcc0eee15
06/08/2017

Chart.Walls Property (PowerPoint)

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

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