VSQUERYADDFILEFLAGS Enumeration

 

Used in the IVsTrackProjectDocuments2.OnQueryAddFiles and IVsTrackProjectDocumentsEvents2.OnQueryAddFiles methods to indicate the type of file that will be added to the project.

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

[FlagsAttribute]
public enum VSQUERYADDFILEFLAGS

Member nameDescription
VSQUERYADDFILEFLAGS_IsNestedProjectFile

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

VSQUERYADDFILEFLAGS_IsSpecialFile

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

VSQUERYADDFILEFLAGS_NoFlags

No flags are associated with the file that will be added to the project.

From IVsTrackProjectDocumentsEvents2.idl:

typedef enum tagVSQUERYADDFILEFLAGS
{
   VSQUERYADDFILEFLAGS_NoFlags             = 0,
   VSQUERYADDFILEFLAGS_IsSpecialFile       = 1,
   VSQUERYADDFILEFLAGS_IsNestedProjectFile = 2
} VSQUERYADDFILEFLAGS;
Return to top
Show: