Skip to main content
All docs
V18.2

FilterConditionBase(FilterConditionEnum, Object, Object, Object) Constructor

Initializes a new instance of the FilterConditionBase class with the specified column, comparison operator, and condition values.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v18.2.dll

Declaration

public FilterConditionBase(
    FilterConditionEnum condition,
    object column,
    object value1,
    object value2
)

Parameters

Name Type Description
condition DevExpress.XtraTreeList.FilterConditionEnum

A FilterConditionEnum value that specifies the comparison operator. This value is assigned to the FilterConditionBase.Condition property.

column Object

The TreeListColumn object to which the condition is applied. This value is assigned to the FilterCondition.Column property.

value1 Object

The first value that is used to create the filter condition. This value is assigned to the FilterConditionBase.Value1 property.

value2 Object

The second value that is used to create the filter condition. This value is assigned to the FilterConditionBase.Value2 property.

See Also