Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 1.06 KB

Project.chart.sidewall.md

File metadata and controls

51 lines (31 loc) · 1.06 KB
title keywords f1_keywords ms.service ms.assetid ms.date ms.localizationpriority
Chart.SideWall property (Project)
vbapj.chm131633
vbapj.chm131633
project-server
d8b74dc2-7a22-1064-972d-876396414e2c
06/08/2017
medium

Chart.SideWall property (Project)

Gets an Office.IMsoWalls object that allows the user to individually format the side wall of a 3D chart. Read-only IMsoWalls.

Syntax

expression.SideWall

expression A variable that represents a Chart object.

Example

The following example colors the side wall of the 3D chart blue. In Project, red is the last byte of a hexadecimal value.

Sub FormatSideWall()
    Dim chartShape As Shape
    Dim reportName As String
    
    reportName = "Simple 3D chart"
    Set chartShape = ActiveProject.Reports(reportName).Shapes(1)
    
    chartShape.Chart.SideWall.Fill.ForeColor.RGB = &HFF0000
End Sub

Property value

IMSOWALLS

See also

Chart Object

[!includeSupport and feedback]