Skip to main content
All docs
V18.2

TreeList.FilterConditions Property

Provides access to a filter condition collection. This property is in effect in version 16.2 and older if the TreeListOptionsBehavior.EnableFiltering option is true. In versions 17.1 and newer, we suggest that you use the advanced in-code filtering mechanism as described in the Filtering topic.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v18.2.dll

Declaration

[XtraSerializableProperty(XtraSerializationVisibility.Collection, true, false, true, 1001, XtraSerializationFlags.DefaultValue)]
[Browsable(false)]
public virtual FilterConditionCollection FilterConditions { get; }

Property Value

Type Description
FilterConditionCollection

A FilterConditionCollection object that represents the collection of filter conditions for a Tree List.

Remarks

Important

The FilterConditions property is hidden starting from version 17.1. In these versions, we suggest that you use the advanced in-code filtering mechanism instead of the FilterConditions property. See Filtering to learn more. To quickly replace filter conditions with API introduced in version 17.1, click the “Convert FilterConditions to Criteria” link within the Tree List smart tag.

Tree List - Convert Conditions

See Also