'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.