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

Latest commit

 

History

History
59 lines (34 loc) · 1.11 KB

chart-walls-property-project.md

File metadata and controls

59 lines (34 loc) · 1.11 KB
title ms.prod ms.assetid ms.date
Chart.Walls Property (Project)
project-server
8404e5cb-8da2-49b4-c49a-488d67457681
06/08/2017

Chart.Walls Property (Project)

Gets an Office.IMsoWalls object that represents the walls of a 3-D chart. Read-only IMsoWalls.

Syntax

expression. Walls

expression A variable that represents a Chart object.

Parameters

Name Required/Optional Data Type Description
fBackWall Optional Boolean Default value = True. The fBackWall parameter has no effect in Project.

Example

The following example sets the wall borders of the 3-D chart to a red line that is three points wide.

Sub FormatWalls()
    Dim chartShape As Shape
    Dim reportName As String
    
    reportName = "Simple 3-D chart"
    Set chartShape = ActiveProject.Reports(reportName).Shapes(1)
    
    With chartShape.Chart.Walls.Border
        .Weight = 3
        .Color = &;HFF
    End With
End Sub

Property value

IMSOWALLS

See also

Other resources

Chart Object