Xceed Toolkit for .NET Maui v2.0 Documentation
Xceed.Maui.Toolkit Assembly / Xceed.Maui.Toolkit Namespace / StringFilterType Enumeration


In This Topic
    StringFilterType Enumeration
    In This Topic
    The types of filters available when filtering string data. 
    Syntax
    'Declaration
     
    
    Public Enum StringFilterType 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As StringFilterType
    public enum StringFilterType : System.Enum 
    Members
    MemberDescription
    ContainsThe filter will only let through items that contain the specified value.
    CustomThe filter will be based on a custom condition.
    EndsWithThe filter will only let through items that end with the specified value.
    EqualsThe filter will only let through items that match the specified value.
    NotContainThe filter will only let through items that do not contain the specified value.
    NotEqualThe filter will only let through items that do not match the specified value.
    StartsWith

    The filter will only let through items that start with the specified value.

    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Xceed.Maui.Toolkit.StringFilterType

    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also