CompletionSet.CompletionBuilders Property
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.
Gets the list of completion builders that are part of this completion set.
public:
virtual property System::Collections::Generic::IList<Microsoft::VisualStudio::Language::Intellisense::Completion ^> ^ CompletionBuilders { System::Collections::Generic::IList<Microsoft::VisualStudio::Language::Intellisense::Completion ^> ^ get(); };
public virtual System.Collections.Generic.IList<Microsoft.VisualStudio.Language.Intellisense.Completion> CompletionBuilders { get; }
member this.CompletionBuilders : System.Collections.Generic.IList<Microsoft.VisualStudio.Language.Intellisense.Completion>
Public Overridable ReadOnly Property CompletionBuilders As IList(Of Completion)
Property Value
A list of Completion objects.
Remarks
Completion builders are completions that are displayed separately from the other completions in the completion set. In the default presentation, completion builders appear in a non-scrolled list above the scrolled list of completions. When overriding this property, if you would like to provide a dynamic collection of completion builders, take care to implement INotifyCollectionChanged for your collection of completion builders. The default completion presenter uses INotifyCollectionChanged to listen for changes.