FindScopes
Method of ITextDocument
Description
Find Scopes from range
Parameters
- IRange pRange
- VARIANT_BOOL bIncludeParents = VARIANT_FALSE (optional)
Return Value
- IScopes ppScopes
Syntax
JavaScript
var ppScopes = TextDocument.FindScopes(pRange, bIncludeParents);
==== Visual Basic Script ====
ppScopes = TextDocument.FindScopes pRange, bIncludeParents
==== C++ ====
CComPtr<IScopes> pScopes; HRESULT hr = TextDocument.FindScopes(pRange, bIncludeParents, &pScopes);
===== See Also ===== ITextDocument