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