__VSCOMPSELFLAGS2 Enumeration

 

Provides additional members for the VSCOMPSELFLAGS enum.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)

[FlagsAttribute]
public enum __VSCOMPSELFLAGS2

Member nameDescription
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,
};
Return to top
Show: