CompletionSet.Close Method

Closes the completion list display.

Namespace:  Microsoft.VisualStudio.Package
Assemblies:   Microsoft.VisualStudio.Package.LanguageService.10.0 (in Microsoft.VisualStudio.Package.LanguageService.10.0.dll)
  Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
  Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)

Syntax

‘선언
Public Overridable Sub Close
‘사용 방법
Dim instance As CompletionSet

instance.Close()
public virtual void Close()
public:
virtual void Close()
abstract Close : unit -> unit 
override Close : unit -> unit 
public function Close()

Remarks

This method closes the completion list display if it is open, and disposes any allocations the CompletionSet class may have made. If you derive a class from the CompletionSet class, you must override this method to deallocate any resources you have allocated and then call the base version of this method.

The base method calls the UpdateCompletionStatus method on the IVsTextView object that was passed to the Init method with a nulla null reference (Nothing in Visual Basic) value to have Visual Studio close the completion list display. The base method then calls Dispose on the Declarations object.

.NET Framework Security

See Also

Reference

CompletionSet Class

CompletionSet Members

Microsoft.VisualStudio.Package Namespace