VSQUERYREMOVEFILEFLAGS Enumeration

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

[FlagsAttribute]
public enum VSQUERYREMOVEFILEFLAGS

Member nameDescription
VSQUERYREMOVEFILEFLAGS_IsNestedProjectFile

Nested project (file), for example, the file sitting on the root node of a nested project.

VSQUERYREMOVEFILEFLAGS_IsSpecialFile

"Special" file, for example, an invisible file associated with another file in the project.

VSQUERYREMOVEFILEFLAGS_NoFlags

No flags are associated with the file.

From IVsTrackProjectDocumentsEvents2.idl:

typedef enum VSQUERYREMOVEFILEFLAGS
{
   VSQUERYREMOVEFILEFLAGS_NoFlags             = 0,
   VSQUERYREMOVEFILEFLAGS_IsSpecialFile       = 1,
   VSQUERYREMOVEFILEFLAGS_IsNestedProjectFile = 2
} VSQUERYREMOVEFILEFLAGS;
Return to top
Show: