Syntax

expression.Interior

expression A variable that represents a Range object.

Example

This example sets the interior color for cell A1 on Sheet1 to cyan.

Visual Basic for Applications
Sub SetColor() Worksheets("Sheet1").Range("A1").Interior.ColorIndex = 8 ' Cyan End Sub

See also: