Interface IFilterDefinition
Interface that holds the information of the Filtering like Mapping Name, filter predicate, etc.
Namespace: Syncfusion.Data
Assembly: Syncfusion.Data.Portable.dll
Syntax
public interface IFilterDefinition
Properties
FilterBehavior
Gets or sets the filter behavior for the column.
Declaration
FilterBehavior FilterBehavior { get; set; }
Property Value
Type | Description |
---|---|
FilterBehavior | The FilterBehavior for the column. |
FilterPredicates
Gets the collection of filter predicates for performing filtering in the collection view.
Declaration
ObservableCollection<FilterPredicate> FilterPredicates { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<FilterPredicate> | The collection of filter predicates for performing filtering in the collection view. |
MappingName
Gets or sets the mapping name of the column, which should be filtered.
Declaration
string MappingName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The mapping name of the column, which should be filtered. |