Xceed DataGrid for Silverlight Documentation
FilterOperator Enumeration
Members 


Value representing the operator to use when filtering values.
Syntax
'Declaration
 
Public Enum FilterOperator 
   Inherits System.Enum
'Usage
 
Dim instance As FilterOperator
public enum FilterOperator : System.Enum 
Members
MemberDescription
ContainedInThe filter value must be contained in the value.
ContainsThe value must contained the filter value.
EndsWithThe value must end with the filter value.
EqualThe value must be equal to filter value.
GreaterThanThe value must be greater than the filter value.
GreaterThanOrEqualThe value must be greater than or equal to the filter value.
LessThanThe value must be less than the filter value.
LessThanOrEqualThe value must be less than or equal to the filter value.
NotEqualThe value must not be equal to the filter value.
StartsWithThe value must start with the filter value.
Remarks

Regardless of the values of the FilterCell.*FilterOperatorVisible properties, if the data type of the parent column (see DataType property) does not allow the operator to be displayed, it will remain hidden.

Operator Data Type
ContainedIn String
Contains String
EndsWith String
Equal All primitive types, enumerations, IEquatable<T>, and IComparable
GreaterThan All primitive types, enumerations, and IComparable
GreaterThanOrEqual All primitive types, enumerations, and IComparable
LessThan All primitive types, enumerations, and IComparable
LessThanOrEqual All primitive types, enumerations, and IComparable
NotEqual All primitive types, enumerations, IEquatable<T>, and IComparable
StartsWith String
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Xceed.Silverlight.Data.FilterOperator

Requirements

Target Platforms: Windows 7, Windows Vista, Windows XP SP3, Windows Server 2008 family

See Also

Reference

Xceed.Silverlight.Data Namespace

Manipulating Data

Filtering Data

Send Feedback