__VSPROFILELOCATIONS Enumeration
Visual Studio 2015
Specifies profile file location.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
| Member name | Description | |
|---|---|---|
| PFL_All | Custom file that the user has browsed to. | |
| PFL_AutoSave | Add the current Autosave file. | |
| PFL_InstallDir | File resides in the installation directory. | |
| PFL_LocationNone | Used only for initialization. | |
| PFL_Other | Custom file that the user has browsed to. | |
| PFL_SettingsDir | File resides in the user's default settings directory. |
These values are used to sort the file list in the UI. Lower values have greater priority.
From vsshell80.idl:
enum __VSPROFILELOCATIONS { PFL_LocationNone = 0x00000000, PFL_InstallDir = 0x00000001, PFL_SettingsDir = 0x00000002, PFL_Other = 0x00000004, PFL_AutoSave = 0x00000008, PFL_All = 0xFFFFFFFF, }; typedef DWORD VSPROFILELOCATIONS;
Show: