[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IAboveAverage.StopIfTrue

StopIfTrue Property

StopIfTrue

Gets or sets a boolean value that determines 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}, {20}, {30}, {40}, {50}};
IAboveAverage format = worksheet.Range["A1:A5"].FormatConditions.AddAboveAverage();
format.Interior.Color = Color.Yellow;
format.StopIfTrue = true;
bool stopIfTrue = format.StopIfTrue;