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

FilterControl.FilterColumns Property

Gets a filter column collection.

Namespace: DevExpress.Xpf.Editors.Filtering

Assembly: DevExpress.Xpf.Core.v19.2.dll

Declaration

[Browsable(false)]
public IEnumerable<FilterColumn> FilterColumns { get; set; }

Property Value

Type Description
IEnumerable<DevExpress.Xpf.Editors.Filtering.FilterColumn>

An object implementing the IEnumerable interface that represents the collection of filter columns.

Remarks

When a source control is assigned to the FilterControl.SourceControl property, the FilterColumns collection is automatically populated with the source control’s columns.

A FilterControl supports unbound mode. When the control is not bound to any source control, it still allows an end-user to construct filter criteria. In this instance, columns must be added to the FilterColumns collection manually.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the FilterColumns 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