VSQUERYREMOVEFILEFLAGS Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Flags associated with OnQueryRemoveFiles(IVsProject, Int32, String[], VSQUERYREMOVEFILEFLAGS[], VSQUERYREMOVEFILERESULTS[], VSQUERYREMOVEFILERESULTS[]) and OnQueryRemoveFiles(IVsProject, Int32, String[], VSQUERYREMOVEFILEFLAGS[], VSQUERYREMOVEFILERESULTS[], VSQUERYREMOVEFILERESULTS[]).
This enumeration supports a bitwise combination of its member values.
public enum class VSQUERYREMOVEFILEFLAGS
public enum class VSQUERYREMOVEFILEFLAGS
enum VSQUERYREMOVEFILEFLAGS
[System.Flags]
public enum VSQUERYREMOVEFILEFLAGS
[<System.Flags>]
type VSQUERYREMOVEFILEFLAGS =
Public Enum VSQUERYREMOVEFILEFLAGS
- Inheritance
-
VSQUERYREMOVEFILEFLAGS
- Attributes
Fields
Name | Value | Description |
---|---|---|
VSQUERYREMOVEFILEFLAGS_NoFlags | 0 | No flags are associated with the file. |
VSQUERYREMOVEFILEFLAGS_IsSpecialFile | 1 | "Special" file, for example, an invisible file associated with another file in the project. |
VSQUERYREMOVEFILEFLAGS_IsNestedProjectFile | 2 | Nested project (file), for example, the file sitting on the root node of a nested project. |
Remarks
COM Signature
From IVsTrackProjectDocumentsEvents2.idl:
typedef enum VSQUERYREMOVEFILEFLAGS
{
VSQUERYREMOVEFILEFLAGS_NoFlags = 0,
VSQUERYREMOVEFILEFLAGS_IsSpecialFile = 1,
VSQUERYREMOVEFILEFLAGS_IsNestedProjectFile = 2
} VSQUERYREMOVEFILEFLAGS;