VSQUERYRENAMEFILEFLAGS Enumeration
Visual Studio 2015
Flags associated with IVsTrackProjectDocumentsEvents2.OnQueryRenameFiles and IVsTrackProjectDocuments2.OnQueryRenameFiles.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
| Member name | Description | |
|---|---|---|
| VSQUERYRENAMEFILEFLAGS_Directory | Rename refers to a disk directory, not a file. Callers are encouraged to use the OnQueryRenameDirectories method to provide this information instead of using this flag with OnQueryRenameFiles. | |
| VSQUERYRENAMEFILEFLAGS_IsNestedProjectFile | Nested project (file), for example, the file sitting on the root node of a nested project. | |
| VSQUERYRENAMEFILEFLAGS_IsSpecialFile | "Special" file, for example, an invisible file associated with another file in the project. | |
| VSQUERYRENAMEFILEFLAGS_NoFlags | No flags. |
From IVsTrackProjectDocumentsEvents2.idl:
typedef enum VSQUERYRENAMEFILEFLAGS { VSQUERYRENAMEFILEFLAGS_NoFlags = 0, VSQUERYRENAMEFILEFLAGS_IsSpecialFile = 1, VSQUERYRENAMEFILEFLAGS_IsNestedProjectFile = 2, VSQUERYRENAMEFILEFLAGS_Directory = 0x00000020 } VSQUERYRENAMEFILEFLAGS;
Show: