ComponentOne CollectionView
C1.CollectionView Assembly / C1.CollectionView Namespace / ICollectionViewEx Class / CreateFilterFromString<T> Method
The collection view.
The query string to be filtered.
if set to true treat spaces as and operator.
if set to true it will look into numeric fields.
If set to true the case will be taken into account.
If set to true the whole word will have to be matched.

In This Topic
    CreateFilterFromString<T> Method
    In This Topic
    Creates a FilterExpression from a query string.
    Syntax
    'Declaration
     
    Public Shared Function CreateFilterFromString(Of T As Class)( _
       ByVal collectionView As ICollectionView(Of T), _
       ByVal query As System.String, _
       Optional ByVal treatSpacesAsAndOperator As System.Boolean, _
       Optional ByVal matchNumbers As System.Boolean, _
       Optional ByVal matchCase As System.Boolean, _
       Optional ByVal matchWholeWord As System.Boolean _
    ) As FilterExpression
    public static FilterExpression CreateFilterFromString<T>( 
       ICollectionView<T> collectionView,
       System.string query,
       System.bool treatSpacesAsAndOperator,
       System.bool matchNumbers,
       System.bool matchCase,
       System.bool matchWholeWord
    )
    where T: class

    Parameters

    collectionView
    The collection view.
    query
    The query string to be filtered.
    treatSpacesAsAndOperator
    if set to true treat spaces as and operator.
    matchNumbers
    if set to true it will look into numeric fields.
    matchCase
    If set to true the case will be taken into account.
    matchWholeWord
    If set to true the whole word will have to be matched.

    Type Parameters

    T
    See Also