'Declaration Public Overloads Function SearchHeaders( _ ByVal sheetIndex As Integer, _ ByVal searchString As String, _ ByVal searchRowHeaders As Boolean, _ ByRef foundRowIndex As Integer, _ ByRef foundColumnIndex As Integer _ ) As SearchFoundFlags
'Usage Dim instance As FpSpread Dim sheetIndex As Integer Dim searchString As String Dim searchRowHeaders As Boolean Dim foundRowIndex As Integer Dim foundColumnIndex As Integer Dim value As SearchFoundFlags value = instance.SearchHeaders(sheetIndex, searchString, searchRowHeaders, foundRowIndex, foundColumnIndex)
public SearchFoundFlags SearchHeaders( int sheetIndex, string searchString, bool searchRowHeaders, ref int foundRowIndex, ref int foundColumnIndex )
Parameters
- sheetIndex
- Index of sheet on which to search
- searchString
- String for which to search
- searchRowHeaders
- Whether to search row headers instead of column headers
- foundRowIndex
- Index of row at which match is found
- foundColumnIndex
- Index of column at which match is found
Return Value
SearchFoundFlags settings indicating in what type cell or cell item the string is found is returned.
Also, the foundRowIndex and foundColumnIndex return the row index and column index of the cell in which the string is found.