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

DataViewBase.SearchPanelCriteriaOperatorType Property

OBSOLETE

Use the SearchPanelParseMode property instead

Gets or sets the logical operator type (AND or OR) used for filtering items when DataViewBase.SearchPanelAllowFilter is set to true.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v24.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

[Obsolete("Use the SearchPanelParseMode property instead")]
[Browsable(false)]
public CriteriaOperatorType SearchPanelCriteriaOperatorType { get; set; }

#Property Value

Type Description
DevExpress.Xpf.Editors.CriteriaOperatorType

The criteria operator type (logical AND or OR).

#Remarks

Without quotation marks, words separated by the space character are treated as individual conditions (using the OR or AND logical operator). Use the SearchPanelCriteriaOperatorType property to specify the type of the logical operator.

The SearchPanelCriteriaOperatorType is not in effect when searching against specific columns. If the search criterion contains conditions for which search columns are specified, the AND logical operator is used.

Note

Starting with v19.2, use the DataViewBase.SearchPanelParseMode property to specify the logical operator type.

Tip

Topic: Search

See Also