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

FilterControl.SourceControl Property

Gets or sets the control/data source to which the FilterControl provides filter criteria.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[DXCategory("Behavior")]
[DefaultValue(null)]
public object SourceControl { get; set; }

Property Value

Type Default Description
Object *null*

An object that represents the source control for the Filter Control.

Remarks

To specify the object to which the Filter Control will supply filter criteria, use the SourceControl property. The SourceControl property accepts the following objects:

  • GridControl
  • TreeList
  • BindingSource
  • DataTable
  • Any control that implements the DevExpress.XtraEditors.Filtering.IFilteredComponent interface.
  • Any object that implements the System.ComponentModel.IBindingListView interface.

The following code snippets (auto-collected from DevExpress Examples) contain references to the SourceControl 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