__VSPROFILELOCATIONS Enum

Definition

Specifies profile file location.

public enum class __VSPROFILELOCATIONS
public enum class __VSPROFILELOCATIONS
enum __VSPROFILELOCATIONS
public enum __VSPROFILELOCATIONS
type __VSPROFILELOCATIONS = 
Public Enum __VSPROFILELOCATIONS
Inheritance
__VSPROFILELOCATIONS

Fields

PFL_All -1

Custom file that the user has browsed to.

PFL_AutoSave 8

Add the current Autosave file.

PFL_InstallDir 1

File resides in the installation directory.

PFL_LocationNone 0

Used only for initialization.

PFL_Other 4

Custom file that the user has browsed to.

PFL_SettingsDir 2

File resides in the user's default settings directory.

Remarks

These values are used to sort the file list in the UI. Lower values have greater priority.

COM Signature

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;  

Applies to