Interior object (Word)

Represents the interior of an object.

Example

The following example enables up and down bars, and then sets the interior color of the up bars to green, for the first chart group of the first chart in the active document. Use the UpBars.Interior property to return the Interior object.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 With .Chart.ChartGroups(1) 
 .HasUpDownBars = True 
 .UpBars.Interior.ColorIndex = 4 
 End With 
 End If 
End With

See also

Word 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.