windowsforms-devexpress-dot-xtraeditors-1234bd36.md
Contains values that specify how a Filter Editor Control’s criteria can be edited.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
public enum FilterEditorViewMode
Public Enum FilterEditorViewMode
| 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.
|
The following properties accept/return FilterEditorViewMode values:
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