VSQUERYADDFILERESULTS 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 returned by the environment in the OnQueryAddFiles(IVsProject, Int32, String[], VSQUERYADDFILEFLAGS[], VSQUERYADDFILERESULTS[], VSQUERYADDFILERESULTS[]) and the OnQueryAddFiles(IVsProject, Int32, String[], VSQUERYADDFILEFLAGS[], VSQUERYADDFILERESULTS[], VSQUERYADDFILERESULTS[]) methods. These flags indicate whether a project can add the file to the project.
public enum class VSQUERYADDFILERESULTS
public enum class VSQUERYADDFILERESULTS
enum VSQUERYADDFILERESULTS
public enum VSQUERYADDFILERESULTS
type VSQUERYADDFILERESULTS =
Public Enum VSQUERYADDFILERESULTS
- Inheritance
-
VSQUERYADDFILERESULTS
Fields
Name | Value | Description |
---|---|---|
VSQUERYADDFILERESULTS_AddOK | 0 | File can be added to the project. |
VSQUERYADDFILERESULTS_AddNotOK | 1 | File cannot be added to the project. |
Remarks
COM Signature
From IVsTrackProjectDocumentsEvents2.idl:
typedef enum tagVSQUERYADDFILERESULTS
{
VSQUERYADDFILERESULTS_AddOK = 0,
VSQUERYADDFILERESULTS_AddNotOK = 1
} VSQUERYADDFILERESULTS;