Back to Devexpress

WindowsFormsSettings.FindPanelCondition Property

windowsforms-devexpress-dot-xtraeditors-dot-windowsformssettings-3de9d3e3.md

latest2.7 KB
Original Source

WindowsFormsSettings.FindPanelCondition Property

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

Declaration

csharp
public static FilterCondition FindPanelCondition { get; set; }
vb
Public Shared Property FindPanelCondition As FilterCondition

Property Value

TypeDescription
FilterCondition

The default comparison operator.

|

Available values:

NameDescription
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.

|

Remarks

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

WindowsFormsSettings Class

WindowsFormsSettings Members

DevExpress.XtraEditors Namespace