Floor object (PowerPoint)
Represents the floor of a 3D chart.
Example
Note
Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.
Use the Floor property to return the Floor object. The following example sets the floor color for embedded chart one to cyan. The example will fail if the chart is not a 3D chart.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.Floor.Interior.Color = RGB(0, 255, 255)
End If
End With
See also
PowerPoint Object Model Reference
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.