FindAll

Method of ITextDocument

Description

Finds all text matches in the document

Parameters

Return Value

Syntax

JavaScript

var ppRanges = TextDocument.FindAll(strText, dwFlags, pRange);

==== Visual Basic Script ====

ppRanges = TextDocument.FindAll strText, dwFlags, pRange

==== C++ ====

CComPtr<IRanges> pRanges;
HRESULT hr = TextDocument.FindAll(strText, dwFlags, pRange, &pRanges);

===== See Also ===== ITextDocument