CompletionSet::IsDisplayed Property

 

Gets whether the completion list is currently displayed.

Namespace:   Microsoft.VisualStudio.Package
Assembly:  Microsoft.VisualStudio.Package.LanguageService.14.0 (in Microsoft.VisualStudio.Package.LanguageService.14.0.dll)

public:
property bool IsDisplayed {
	bool get();
}

Property Value

Type: System::Boolean

Set to true if the completion list is displayed, otherwise false.

This property returns the state of an internal flag that is set in the Init method.

The Init method sets the internal flag to false if the declaration parameter is empty or both of the following conditions hold:

  1. The Boolean parameter passed to the method is false.

  2. The GetBestMatch method finds that the match is unique. The GetBestMatch method may be called by the shell because of the calls Init makes to UpdateCompletionStatus.

Return to top
Show: