[]
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.
bool StopIfTrue { get; set; }
Property StopIfTrue As Boolean
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;