[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IAboveAverage.Interior

Interior Property

Interior

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

Use the returned IInterior object to access or modify the fill settings applied when the above-average conditional formatting rule is in effect.

Declaration
IInterior Interior { get; }
ReadOnly Property Interior As IInterior
Examples
worksheet.Range["A1:A5"].Value = new object[,] {{10}, {20}, {30}, {40}, {50}};
IAboveAverage format = worksheet.Range["A1:A5"].FormatConditions.AddAboveAverage();
IInterior interior = format.Interior;
interior.Color = Color.Yellow;