Skip to main content
A newer version of this page is available. .

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.v19.1.dll

Declaration

public static FilterCondition FindPanelCondition { get; set; }

Property Value

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.

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