Floor Object (Word)
Represents the floor of a 3-D chart.
Version Information
Version Added: Word 2007
Example
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 3-D chart.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.Floor.Interior.Color = RGB(0, 255, 255)
End If
End With