[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IStyle.Interior

Interior Property

Interior

Gets the IInterior object that represents this style's fill formatting.

Use this property to access fill and pattern settings such as background color and pattern style for the style.

Declaration
IInterior Interior { get; }
ReadOnly Property Interior As IInterior
Examples
IStyle style = workbook.Styles.Add("filledStyle");
style.Interior.Pattern = Pattern.Solid;
worksheet.Range["A1"].Style = style;
IInterior interior = style.Interior;