Skip to main content

DataControlBase.GetColumnFilterCriteria(ColumnBase) Method

Returns a filter applied to the specified column.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v14.2.Core.dll

#Declaration

public CriteriaOperator GetColumnFilterCriteria(
    ColumnBase column
)

#Parameters

Name Type Description
column ColumnBase

A ColumnBase descendant that represents the grid column.

#Returns

Type Description
CriteriaOperator

A CriteriaOperator object that are the filter criteria applied to the specified column. null (Nothing in Visual Basic), if data isn't filtered by the values of the specified column.

#Remarks

To specify the grid's filter, use the DataControlBase.FilterCriteria or DataControlBase.FilterString property. To apply a filter to a column(s) preserving the grid's filter (if applied), use the DataControlBase.MergeColumnFilters method.

The GetColumnFilterCriteria method clears the required column's filter.

To learn more, see Filtering Overview and Filtering in Code.

See Also