VSQUERYADDFILEFLAGS Enumeration
Visual Studio 2015
Used in the IVsTrackProjectDocuments2.OnQueryAddFiles and IVsTrackProjectDocumentsEvents2.OnQueryAddFiles methods to indicate the type of file that will be added to the project.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
| Member name | Description | |
|---|---|---|
| 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;
Show: