Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxSpreadSheetCustomConditionalFormattingRule.StopIfTrue Property

Specifies if the parent conditional formatting controller evaluates other rules with lower priority that are applied to the same areas if the current rule’s condition is met.

#Declaration

Delphi
property StopIfTrue: Boolean read; write;

#Property Value

Type Description
Boolean
  • If False (default), the conditional formatting controller evaluates rules with lower priority if the current rule’s condition is met.
  • If True, the conditional formatting controller evaluates rules with lower priority, even if the current rule’s condition is not met.

#Remarks

The StopIfTrue property corresponds to the conditional formatting rule’s check box in the Stop If True column in the Conditional Formatting Rules Manager dialog:

VCL Spreadsheet: The "Stop if True" Column in the Conditional Formatting Rules Manager Dialog

#Limitations

Only the following TdxSpreadSheetCustomConditionalFormattingRule class descendants expose the StopIfRule property:

TdxSpreadSheetConditionalFormattingRuleAboveOrBelowAverage
An Above or Below Average conditional formatting rule.
TdxSpreadSheetConditionalFormattingRuleCellIs
A Cell Is conditional formatting rule.
TdxSpreadSheetConditionalFormattingRuleDuplicateValues
A Duplicate Values conditional formatting rule.
TdxSpreadSheetConditionalFormattingRuleExpression
An Expression conditional formatting rule.
TdxSpreadSheetConditionalFormattingRuleTopBottomValues
A Top/Bottom Values conditional formatting rule.
TdxSpreadSheetConditionalFormattingRuleUniqueValues
A Unique Values conditional formatting rule.

#Default Value

The StopIfTrue property’s default value is False.

See Also