Method of IApplication
Finds all matches text in the document
var ppFilesRanges = Application.FindInFilesAll(strText, strPath, dwFlags, dwFlagsEx, strInclude, strExclude);
==== Visual Basic Script ====
ppFilesRanges = Application.FindInFilesAll strText, strPath, dwFlags, dwFlagsEx, strInclude, strExclude
==== C++ ====
CComPtr<IFilesRanges> pFilesRanges; HRESULT hr = Application.FindInFilesAll(strText, strPath, dwFlags, dwFlagsEx, strInclude, strExclude, &pFilesRanges);
===== See Also ===== IApplication