Skip to content

Latest commit

 

History

History
53 lines (30 loc) · 1016 Bytes

Project.chart.floor.md

File metadata and controls

53 lines (30 loc) · 1016 Bytes
title ms.service ms.assetid ms.date ms.localizationpriority
Chart.Floor property (Project)
project-server
ae1f3f2b-e49c-63d1-f487-5d031fea20e5
06/08/2017
medium

Chart.Floor property (Project)

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

Syntax

expression.Floor

expression A variable that represents a Chart object.

Remarks

The Floor property fails on 2D charts.

Example

The following example sets the floor color of the chart to blue. The example should be run on a 3D chart.

Sub SetFloorColor()
    Dim chartShape As Shape
    Dim reportName As String
    
    reportName = "Simple 3D chart"
    Set chartShape = ActiveProject.Reports(reportName).Shapes(1)
    
    chartShape.Chart.Floor.Interior.ColorIndex = 5
End Sub

Property value

IMSOFLOOR

See also

Chart Object

[!includeSupport and feedback]