Interface IFilterDefinition
Interface that holds the information of the Filtering like Mapping Name, filter predicate, etc.
Namespace: Syncfusion.Maui.DataSource
Assembly: Syncfusion.Maui.DataSource.dll
Syntax
public interface IFilterDefinition
Properties
FilterBehavior
Gets or sets the Filter behavior for the column.
Declaration
FilterBehavior FilterBehavior { get; set; }
Property Value
Type |
---|
FilterBehavior |
FilterPredicates
Gets the filters.
Declaration
ObservableCollection<FilterPredicate> FilterPredicates { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<FilterPredicate> | The filters. |
MappingName
Gets or sets the name of the mapping.
Declaration
string MappingName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the mapping. |