FindScopes

Method of ITextDocument

Description

Find Scopes from range

Parameters

Return Value

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