[]
Returns the IInterior which represents the interior (background) color and pattern of the specified cell(s).
IInterior Interior { get; }
ReadOnly Property Interior As IInterior
| Type | Description |
|---|---|
| IInterior | The interior. |
IRange range = worksheet.Range["A1"];
IInterior interior = range.Interior;
interior.Color = Color.LightYellow;
Color color = range.Interior.Color;