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

ColumnViewOptionsFilter.FilterEditorUseMenuForOperandsAndOperators Property

Gets or sets whether a menu or combobox editor is used to select operands and operators in a filter editor. This property is not supported when filters are edited in a text form (see ColumnViewOptionsFilter.DefaultFilterEditorView).

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v20.2.dll

NuGet Package: DevExpress.Win.Grid

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public virtual bool FilterEditorUseMenuForOperandsAndOperators { get; set; }

Property Value

Type Default Description
Boolean **false**

true if the operand and operator lists are presented as menus; false these lists are presented as a combobox.

Property Paths

You can access this nested property as listed below:

Object Type Path to FilterEditorUseMenuForOperandsAndOperators
AdvBandedGridView
.OptionsFilter .FilterEditorUseMenuForOperandsAndOperators
BandedGridView
.OptionsFilter .FilterEditorUseMenuForOperandsAndOperators
ColumnView
.OptionsFilter .FilterEditorUseMenuForOperandsAndOperators
CardView
.OptionsFilter .FilterEditorUseMenuForOperandsAndOperators
GridView
.OptionsFilter .FilterEditorUseMenuForOperandsAndOperators
LayoutView
.OptionsFilter .FilterEditorUseMenuForOperandsAndOperators
TileView
.OptionsFilter .FilterEditorUseMenuForOperandsAndOperators
WinExplorerView
.OptionsFilter .FilterEditorUseMenuForOperandsAndOperators

Remarks

If the FilterEditorUseMenuForOperandsAndOperators property is set to false, combobox editors are used to select operands and operators in the filter editor.

FilterControl_UseMenuForOperandAndOperators_False

The embedded comboboxes support the incremental search feature which allows a user to select values by typing text.

The following image shows the operand list presented as a menu (the FilterEditorUseMenuForOperandsAndOperators property is set to true):

FilterControl_UseMenuForOperandAndOperators_True

See Also