[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITop10.Interior

Interior Property

Interior

Gets an instance of IInterior that represents the background color of this conditional format.

Declaration
IInterior Interior { get; }
ReadOnly Property Interior As IInterior
Examples
worksheet.Range["A1:A5"].Value = new object[,] {{10}, {30}, {20}, {50}, {40}};
ITop10 top10 = worksheet.Range["A1:A5"].FormatConditions.AddTop10();
top10.Rank = 2;
IInterior interior = top10.Interior;
interior.Color = Color.Red;