[]
Searches the text in the cells of the sheets for the search string
with the default criteria using a provided advanced search dialog.
public void SearchWithDialogAdvanced(string searchString)
Public Sub SearchWithDialogAdvanced(searchString As String)
Type | Name | Description |
---|---|---|
string | searchString | String for which to search |
Searches the text in the cells of the specified sheet range for the specified string
with the specified criteria using a provided advanced search dialog.
public void SearchWithDialogAdvanced(int startSheetIndex, int endSheetIndex, string searchString, bool caseSensitive, bool exactMatch, bool alternateSearch, bool useWildcards, int startRowIndex, int startColumnIndex)
Public Sub SearchWithDialogAdvanced(startSheetIndex As Integer, endSheetIndex As Integer, searchString As String, caseSensitive As Boolean, exactMatch As Boolean, alternateSearch As Boolean, useWildcards As Boolean, startRowIndex As Integer, startColumnIndex As Integer)
Type | Name | Description |
---|---|---|
int | startSheetIndex | Sheet index on which to start the search |
int | endSheetIndex | Sheet index on which to end the search |
string | searchString | String for which to search |
bool | caseSensitive | Whether search should consider the case of the letters in the search string |
bool | exactMatch | Whether the search should consider only an exact match |
bool | alternateSearch | Whether search goes by alternate coordinates of column, row (instead of row, column) |
bool | useWildcards | Whether search considers wildcard characters (*, ?) in the search string |
int | startRowIndex | Row index at which to start |
int | startColumnIndex | Column index at which to start |