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

ColumnViewOptionsFilter.DefaultFilterEditorView Property

Gets or sets how an end-user can edit expressions in the Filter Editor and Format Rule Expression Editor.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

[DefaultValue(FilterEditorViewMode.Visual)]
[XtraSerializableProperty]
public virtual FilterEditorViewMode DefaultFilterEditorView { get; set; }

Property Value

Type Default Description
FilterEditorViewMode **Visual**

A FilterEditorViewMode value.

Available values:

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.

Property Paths

You can access this nested property as listed below:

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

Remarks

Use the DefaultFilterEditorView property to specify how an end-user can edit expressions in the Filter Editor and Format Rule Expression Editor: in a text or visual form or using both of these forms.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the DefaultFilterEditorView property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also