Xceed Toolkit for .NET Maui v2.0 Documentation
Xceed.Maui.Toolkit Assembly / Xceed.Maui.Toolkit Namespace / ICustomFilterAction Interface / IsItemPassFilter Method
The object that will be evaluated.
The string that will be used to evaluate the item; in other words, the filter.


In This Topic
    IsItemPassFilter Method
    In This Topic
    Validates if the item passes the filter or not.
    Syntax
    'Declaration
     
    
    Function IsItemPassFilter( _
       ByVal item As Object, _
       ByVal filterText As String _
    ) As Boolean
    'Usage
     
    
    Dim instance As ICustomFilterAction
    Dim item As Object
    Dim filterText As String
    Dim value As Boolean
     
    value = instance.IsItemPassFilter(item, filterText)
    bool IsItemPassFilter( 
       object item,
       string filterText
    )

    Parameters

    item
    The object that will be evaluated.
    filterText
    The string that will be used to evaluate the item; in other words, the filter.

    Return Value

    Returns true if the object passes the filter; false otherwise.
    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