[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITop10.AppliesTo

AppliesTo Property

AppliesTo

Gets or sets the IRange object for the cell range to which the formatting rule is applied.

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