[]
Searches the text in the cells of the active sheet for the search string
with the default criteria using a provided search dialog.
public void SearchWithDialog(string searchString)
Public Sub SearchWithDialog(searchString As String)
Type | Name | Description |
---|---|---|
string | searchString | String for which to search |
Searches the text in the cells of the specified sheet for the specified string
with the specified criteria using a provided search dialog.
public void SearchWithDialog(int sheetIndex, string searchString, bool caseSensitive, bool exactMatch, bool alternateSearch, bool useWildcards, int startRowIndex, int startColumnIndex)
Public Sub SearchWithDialog(sheetIndex 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 | sheetIndex | Sheet index on which to search |
string | searchString | String for which to search |
bool | caseSensitive | Whether the search considers the case of the letters in the search string |
bool | exactMatch | Whether the search considers only an exact match |
bool | alternateSearch | Whether the search goes by alternate coordinates of column, row (instead of row, column) |
bool | useWildcards | Whether the search considers wildcard characters (*, ?) in the search string |
int | startRowIndex | Row index at which to start |
int | startColumnIndex | Column index at which to start |