Skip to content

Latest commit

 

History

History
59 lines (30 loc) · 1.04 KB

PowerPoint.Chart.Floor.md

File metadata and controls

59 lines (30 loc) · 1.04 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Chart.Floor property (PowerPoint)
vbapp10.chm684029
vbapp10.chm684029
PowerPoint.Chart.Floor
a599ed02-d137-f823-0a5e-325d3f8c7406
06/08/2017
medium

Chart.Floor property (PowerPoint)

Returns the floor of the 3D chart. Read-only Floor.

Syntax

expression.Floor

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 floor color of the first chart in the active document to blue. You should run the example on a 3D chart (the Floor property fails on 2D charts).

With ActiveDocument.InlineShapes(1)

    If .HasChart Then

        .Chart.Floor.Interior.ColorIndex = 5

    End If

End With

See also

Chart Object

[!includeSupport and feedback]