FindPanelParserKind Enum
Contains values that specify how a control’s Find Panel combines entered words to create a search query.
Namespace: DevExpress.Data.Filtering
Assembly: DevExpress.Data.v24.2.dll
NuGet Package: DevExpress.Data
#Declaration
#Members
Name | Description |
---|---|
Default
|
When the Windows When a control’s Parser |
Mixed
|
Words are combined by the ‘OR’ operator. The operator changes to ‘AND’ if you specify a column name before a search word. The ‘administrator owner Country:Sweden‘ string is treated as ‘(administrator OR owner) AND Sweden |
Exact
|
The exact match. If the entered string contains the space characters, the words are not treated separately. |
And
|
Words are combined by the ‘AND’ operator. The operator changes to ‘OR’ when you precede a word with the ‘?’ character. The operator changes to ‘NOT’/‘AND NOT’ when you precede a word with the ‘-‘ sign. The ‘?administrator ?Maria Sweden -Owner‘ is treated as ‘Sweden AND (administrator OR Maria) AND NOT Owner‘ |
Or
|
Words are combined by the ‘OR’ operator. The operator changes to ‘AND’ when you precede a word with the ‘+’ sign. The ‘administrator Maria +Sweden‘ string is treated as the ‘Sweden AND (administrator OR Maria)‘ query. |
Custom
|
Allows you to implement a custom parser by handling a control’s Parse |
#Related API Members
The following properties accept/return FindPanelParserKind values:
#Remarks
Use the WindowsFormsSettings.FindPanelParserKind property to specify the default behavior for all controls.
To override this behavior for individual controls, use the following properties: