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

FilterEditorViewMode Enum

Contains values that specify how a Filter Editor Control’s criteria can be edited.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public enum FilterEditorViewMode

#Members

Name Description
Text

The Filter Editor’s filter can be solely edited in text form, using a dedicated text editor.

Visual

The Filter Editor’s filter can be solely edited in a visual form, using a dedicated tree view.

VisualAndText

A Filter Editor displays two pages: Visual and Text, allowing an end-user to build filters in visual and text forms respectively.

TextAndVisual

A Filter Editor displays two pages: Text and Visual, allowing an end-user to build filters in text and visual forms respectively.

#Remarks

When a FilterEditorControl is used within a grid control (see Filter Editor), use the ColumnViewOptionsFilter.DefaultFilterEditorView property, to specify how an end-user can edit criteria: in text or visual form.

To specify the display mode for a standalone Filter Editor Control, use the FilterEditorControl.ViewMode property.

See Also