FlexGrid for WPF | ComponentOne
C1.WPF.FlexGridFilter.4.6.2 Assembly / C1.WPF.FlexGrid Namespace / ConditionOperator Enumeration

In This Topic
    ConditionOperator Enumeration
    In This Topic
    Represents operators that can be used in filter conditions.
    Syntax
    'Declaration
     
    Public Enum ConditionOperator 
       Inherits System.Enum
    public enum ConditionOperator : System.Enum 
    Members
    MemberDescription
    BeginsWithReturn true if the string representation of the value begins with the operator parameter.
    ContainsReturn true if the string representation of the value contains the operator parameter.
    DoesNotContainReturn true if the string representation of the value does not contain the operator parameter.
    DoesNotEqualReturn true if the value does not equal the operator parameter.
    EndsWithReturn true if the string representation of the value ends with the operator parameter.
    EqualsReturn true if the value equals the operator parameter.
    IsGreaterThanReturn true if the value is greater than the operator parameter.
    IsGreaterThanOrEqualToReturn true if the value is greater than or equal to the operator parameter.
    IsLessThanReturn true if the value is less than the operator parameter.
    IsLessThanOrEqualToReturn true if the value is less than or equal to the operator parameter.
    NoneDisables the operator.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.WPF.FlexGrid.ConditionOperator

    See Also