[]
Gets a Boolean value that determines whether additional formatting rules on the cell should not be evaluated after this icon set rule evaluates to true.
If this property returns true, later conditional formatting rules are
not evaluated for cells where this icon set rule evaluates to true.
If it returns false, subsequent rules can continue to be evaluated.
bool StopIfTrue { get; }
ReadOnly Property StopIfTrue As Boolean
worksheet.Range["A1:A5"].Value = new object[,] {{10}, {30}, {50}, {70}, {90}};
IIconSetCondition condition = worksheet.Range["A1:A5"].FormatConditions.AddIconSetCondition();
bool stopIfTrue = condition.StopIfTrue;