[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IIconSetCondition.StopIfTrue

StopIfTrue Property

StopIfTrue

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.

Declaration
bool StopIfTrue { get; }
ReadOnly Property StopIfTrue As Boolean
Examples
worksheet.Range["A1:A5"].Value = new object[,] {{10}, {30}, {50}, {70}, {90}};
IIconSetCondition condition = worksheet.Range["A1:A5"].FormatConditions.AddIconSetCondition();
bool stopIfTrue = condition.StopIfTrue;