Skip to main content

ColumnFilterInfo(ColumnFilterType, Object, String) Constructor

Initializes a new instance of the ColumnFilterInfo class with the specified settings.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v23.2.dll

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

Declaration

public ColumnFilterInfo(
    ColumnFilterType type,
    object _value,
    string filterString
)

Parameters

Name Type Description
type ColumnFilterType

A ColumnFilterType enumeration value which specifies the filter type. This value is assigned to the ColumnFilterInfo.Type 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.

filterString String

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

See Also