CompletionSet Constructor (ImageList^, Source^)

 

Initializes a new instance of the CompletionSet class.

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

public:
CompletionSet(
	ImageList^ imageList,
	Source^ source
)

Parameters

imageList
Type: System.Windows.Forms::ImageList^

[in] An ImageList object containing the images to be used in the completion list display. This cannot be null. It can however, be an empty list..

source
Type: Microsoft.VisualStudio.Package::Source^

[in] A Source object representing the source file to be affected by the completion list. This cannot be null.

If you must derive a class from the CompletionSet class, you must call the base class constructor.

The base constructor caches the image list and Source object.

Return to top
Show: