IVsCompletionSet.Dismiss Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Releases the completion set when it is no longer needed.
public:
void Dismiss();
public:
void Dismiss();
void Dismiss();
public void Dismiss ();
abstract member Dismiss : unit -> unit
Public Sub Dismiss ()
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsCompletionSet::Dismiss();
This method is called by the view when the completion set is no longer needed. If you want to force a dismissal of a completion set for a language service, then call M:Microsoft.VisualStudio.TextManager.Interop.IVsTextView.UpdateCompletionStatus(Microsoft.VisualStudio.TextManager.Interop.IVsCompletionSet,System.UInt32)
with the pCompSet
parameter set equal to null
. If you already have a completion set cached for your view, call Dismiss
to release the completion set. This method also removes the user interface along with the completion list and any tips.