[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITop10.StopIfTrue

StopIfTrue Property

StopIfTrue

Gets or sets a Boolean value that indicates whether additional formatting rules on the cell should be evaluated if the current rule evaluates to true.

Declaration
bool StopIfTrue { get; set; }
Property StopIfTrue As Boolean
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.StopIfTrue = true;
bool stopIfTrue = top10.StopIfTrue;