'Declaration Public Overloads Sub Search( _ ByVal sheetIndex As Integer, _ ByVal searchString As String, _ ByRef foundRowIndex As Integer, _ ByRef foundColumnIndex As Integer _ )
'Usage Dim instance As Workbook Dim sheetIndex As Integer Dim searchString As String Dim foundRowIndex As Integer Dim foundColumnIndex As Integer instance.Search(sheetIndex, searchString, foundRowIndex, foundColumnIndex)
public void Search( int sheetIndex, string searchString, out int foundRowIndex, out int foundColumnIndex )
Parameters
- sheetIndex
- The index of the sheet on which to search.
- searchString
- The string for which to search.
- foundRowIndex
- The index of the row at which a match is found.
- foundColumnIndex
- The index of the column at which a match is found.