ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Blazor.Viewer Assembly / GrapeCity.ActiveReports.Blazor.Viewer Namespace / ReportViewer Class / Search Method
String to find.
The object optionally defines the search options.
The function to call after performing search.

In This Topic
    Search Method
    In This Topic
    Performs a search of a specific term with specific search options (match case, whole word) and invokes the callback with the search result passed.
    Syntax
    'Declaration
     
    Public Function Search( _
       ByVal searchTerm As String, _
       Optional ByVal searchOptions As SearchOptions, _
       Optional ByVal callback As Action(Of List(Of SearchResult)) _
    ) As Task

    Parameters

    searchTerm
    String to find.
    searchOptions
    The object optionally defines the search options.
    callback
    The function to call after performing search.

    Return Value

    A task that represents the asynchronous operation of performing the search.
    See Also