Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / Search Method / Search(String,Int32,Int32) Method
The string for which to search.
The row index at which the match is found.
The column index at which the match is found.


In This Topic
    Search(String,Int32,Int32) Method
    In This Topic
    Searches the text in the cells.
    Syntax
    'Declaration
     
    Public Overloads Sub Search( _
       ByVal searchString As String, _
       ByRef foundRowIndex As Integer, _
       ByRef foundColumnIndex As Integer _
    ) 
    'Usage
     
    Dim instance As Worksheet
    Dim searchString As String
    Dim foundRowIndex As Integer
    Dim foundColumnIndex As Integer
     
    instance.Search(searchString, foundRowIndex, foundColumnIndex)
    public void Search( 
       string searchString,
       out int foundRowIndex,
       out int foundColumnIndex
    )

    Parameters

    searchString
    The string for which to search.
    foundRowIndex
    The row index at which the match is found.
    foundColumnIndex
    The column index at which the match is found.
    See Also