__VSPROJSLNDLGFLAGS Enumeration
Visual Studio 2015
Specifies project and solution dialog flags for OpenProjectOrSolutionViaDlg calls.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
| Member name | Description | |
|---|---|---|
| PSDF_AddExistingProjectDialog | Add existing project dialog. | |
| PSDF_DefaultToAllProjectsFilter | Default to All Projects filter. | |
| PSDF_DirectoryPicker | Puts the dialog in directory-picker mode. Used to open directory-based projects. | |
| PSDF_OpenProjectDialog | Open project dialog. | |
| PSDF_OpenSolutionDialog | Open solution dialog. |
From vsshell80.idl:
enum __VSPROJSLNDLGFLAGS { PSDF_OpenSolutionDialog = 0x00000001, // PSDF_OpenProjectDialog = 0x00000002, // PSDF_AddExistingProjectDialog = 0x00000004, // PSDF_DefaultToAllProjectsFilter = 0x00000008, // PSDF_DirectoryPicker = 0x00000010, }; typedef DWORD VSPROJSLNDLGFLAGS;
Show: