Constructs a CXllFinder object
[C++]
CXllFinder(
const char* pszFind,
BOOL bLookInFormulae = FALSE,
BOOL bMatchWhole = FALSE,
DWORD dwSheetId = 0
);
CXllFinder(
const char* pszFind,
BOOL bLookInFormulae,
BOOL bMatchWhole,
const CString& strBook,
const CString& strSheet
);
A null-terminated string that contains the text being searched for.
If TRUE, then cell formulae will be searched; if FALSE, then cell values will be searched.
If TRUE, then only cells whose entire contents match the search string will be found; if FALSE then all cells that contain the search string will be matched.
The ID of the sheet to be searched. This can be extracted from references, using CXlOper::GetSheetId(), or derived from a call to CXllApp::GetSheetId().
If the value is 0, then the current sheet will be searched.
The name of the workbook containing the sheet to be searched.
The name of the sheet to be searched.
Constructs a CXllFinder object, which can then be used to iterate through all the matching cells
within a sheet.
Header: xllfinder.h