Skip to main content

ColumnFilterInfo(String, Object) Constructor

Initializes a new instance of the ColumnFilterInfo class with the specified filter expression and filter value.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

public ColumnFilterInfo(
    string filterString,
    object _value
)

Parameters

Name Type Description
filterString String

A String value that represents the filter expression. This value is assigned to the ColumnFilterInfo.FilterString property.

_value Object

A Object object that represents the filter value. This parameter is in effect when the type parameter is set to ColumnFilterType.Value and the filter parameter is either an empty string or null (Nothing in Visual Basic). When in effect, the column is filtered by the specified value. This value is assigned to the ColumnFilterInfo.Value property.

See Also