windowsforms-devexpress-dot-xtraeditors-dot-windowsformssettings-3de9d3e3.md
Specifies the default comparison operator (Contains, Equals, StartWith, etc.) a control uses to search for words entered in a Find Panel. This setting is applied to all controls that have their OptionsFind.Condition properties set to Default.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.Utils.v25.2.dll
NuGet Packages : DevExpress.Utils, DevExpress.Wpf.Core
public static FilterCondition FindPanelCondition { get; set; }
Public Shared Property FindPanelCondition As FilterCondition
| Type | Description |
|---|---|
| FilterCondition |
The default comparison operator.
|
Available values:
| Name | Description |
|---|---|
| Contains |
Specifies the Contains comparison operation.
| | StartsWith |
Specifies the StartsWith comparison operation.
| | Like |
Specifies the Like comparison operation.
| | Default |
Specifies the default comparison operation.
| | Equals |
Specifies the Equals comparison operation.
|
A control’s Find Panel searches for an entered word using one of comparison operators: Contains, Equals, StartWith, etc. The WindowsFormsSettings.FindPanelCondition property specifies the default comparison operator for all controls that have their OptionsFind.Condition properties set to Default.
When the WindowsFormsSettings.FindPanelCondition property is set to Default , the actual default mode is Contains.
You can override the WindowsFormsSettings.FindPanelCondition setting for individual controls with the following properties:
See Also