VSQUERYREMOVEFILEFLAGS Enumeration
Visual Studio 2015
Flags associated with IVsTrackProjectDocuments2.OnQueryRemoveFiles and IVsTrackProjectDocumentsEvents2.OnQueryRemoveFiles.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
| Member name | Description | |
|---|---|---|
| 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;
Show: