Class FilterType
Specifies the filter type to be used in LINQ methods.
Inheritance
System.Object
FilterType
Namespace: Syncfusion.Data
Assembly: Syncfusion.Data.UWP.dll
Syntax
public sealed class FilterType : Enum
Fields
Contains
Checks for Contains on the string operands.
Declaration
public const FilterType Contains
Field Value
Type |
---|
FilterType |
EndsWith
Checks for EndsWith on the string operands.
Declaration
public const FilterType EndsWith
Field Value
Type |
---|
FilterType |
Equals
Checks Equals on the operands.
Declaration
public const FilterType Equals
Field Value
Type |
---|
FilterType |
GreaterThan
Checks for GreaterThan on the operands.
Declaration
public const FilterType GreaterThan
Field Value
Type |
---|
FilterType |
GreaterThanOrEqual
Checks for GreaterThan or Equal on the operands.
Declaration
public const FilterType GreaterThanOrEqual
Field Value
Type |
---|
FilterType |
LessThan
Performs LessThan operation.
Declaration
public const FilterType LessThan
Field Value
Type |
---|
FilterType |
LessThanOrEqual
Performs LessThan or Equal operation.
Declaration
public const FilterType LessThanOrEqual
Field Value
Type |
---|
FilterType |
NotContains
Checks for NotContains on the string operands.
Declaration
public const FilterType NotContains
Field Value
Type |
---|
FilterType |
NotEndsWith
Checks the string operand which does not end with the given filter criteria.
Declaration
public const FilterType NotEndsWith
Field Value
Type |
---|
FilterType |
NotEquals
Checks for NotEquals on the operands.
Declaration
public const FilterType NotEquals
Field Value
Type |
---|
FilterType |
NotStartsWith
Checks the string operand which does not start with the given filter criteria.
Declaration
public const FilterType NotStartsWith
Field Value
Type |
---|
FilterType |
StartsWith
Checks for StartsWith on the string operands.
Declaration
public const FilterType StartsWith
Field Value
Type |
---|
FilterType |