[]
Gets whether additional conditional formatting rules on the cell are evaluated after this data bar rule evaluates to true.
If this property is true, lower-priority conditional formatting rules
continue to be evaluated for the cells to which this data bar applies.
bool StopIfTrue { get; }
ReadOnly Property StopIfTrue As Boolean
worksheet.Range["A1:A3"].Value = new object[,] {{10}, {30}, {20}};
IDataBar dataBar = worksheet.Range["A1:A3"].FormatConditions.AddDatabar();
bool stopIfTrue = dataBar.StopIfTrue;