AutoFilter.Custom

Custom(int, FilterOperatorType, object)

Filters a list with a custom criteria.

public void Custom(int fieldIndex, FilterOperatorType operatorType1, object criteria1)
ParameterTypeDescription
fieldIndexInt32The integer offset of the field on which you want to base the filter (from the left of the list; the leftmost field is field 0).
operatorType1FilterOperatorTypeThe filter operator type
criteria1ObjectThe custom criteria

See Also


Custom(int, FilterOperatorType, object, bool, FilterOperatorType, object)

Filters a list with custom criteria.

public void Custom(int fieldIndex, FilterOperatorType operatorType1, object criteria1, bool isAnd, 
    FilterOperatorType operatorType2, object criteria2)
ParameterTypeDescription
fieldIndexInt32The integer offset of the field on which you want to base the filter (from the left of the list; the leftmost field is field 0).
operatorType1FilterOperatorTypeThe filter operator type
criteria1ObjectThe custom criteria
isAndBoolean
operatorType2FilterOperatorTypeThe filter operator type
criteria2ObjectThe custom criteria

See Also