__VSCOMPSELFLAGS2 Enumeration
Visual Studio 2015
Provides additional members for the VSCOMPSELFLAGS enum.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
| Member name | Description | |
|---|---|---|
| VSCOMSEL2_MultiSelectMode | Allows selection of multiple components. | |
| VSCOMSEL2_ShowAllPagesOfSpecifiedTypes | Add pages, which are not specified in the rgcstiTabInitializers parameter of ComponentSelectorDlg2, but produce the same components (have the same ComponentType string value in the registry). | |
| VSCOMSEL2_ShowSelectedList | List of selected components is visible. Ignored in single-select mode. |
Specifies the component selection flags for calls to ComponentSelectorDlg2.
From vsshell80.idl:
enum __VSCOMPSELFLAGS2
{
VSCOMSEL2_MultiSelectMode = 0x00000001,
VSCOMSEL2_ShowSelectedList = 0x00000080,
VSCOMSEL2_ShowAllPagesOfSpecifiedTypes = 0x00000100,
};
Show: