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

TreeListOptionsFilter.DefaultFilterEditorView Property

Gets or sets how an end-user can edit criteria in the Filter Editor.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v18.2.dll

Declaration

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

Property Value

Type Default Description
FilterEditorViewMode **Visual**

A value that specifies how an end-user can edit criteria in the Filter Editor.

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:

Library Object Type Path to DefaultFilterEditorView
WinForms Controls ResourcesTree
.OptionsFilter.DefaultFilterEditorView
TreeList
.OptionsFilter.DefaultFilterEditorView
Reporting XRDesignFieldList
.OptionsFilter.DefaultFilterEditorView
XRDesignReportExplorer
.OptionsFilter.DefaultFilterEditorView

Remarks

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

When text-based filter editing is enabled, the FilterEditorControl is used to edit filter criteria. Otherwise, the FilterControl is used.

See Also