Collect
Method of ICompletionProvider
Description
Called on Completion request, to collect completion items
Parameters
- ITextView pView
- IRange pSelection
- ICompletionSet pSet
Return Value
- VARIANT_BOOL pbContinue
Syntax
JavaScript
var pbContinue = CompletionProvider.Collect(pView, pSelection, pSet);
Visual Basic Script
pbContinue = CompletionProvider.Collect pView, pSelection, pSet
C++
VARIANT_BOOL bContinue; HRESULT hr = CompletionProvider.Collect(pView, pSelection, pSet, &bContinue);