IVCCollection.VCProjectEngine Property
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.
Gets an object pointer to the project engine.
public:
property System::Object ^ VCProjectEngine { System::Object ^ get(); };
public:
property Platform::Object ^ VCProjectEngine { Platform::Object ^ get(); };
[System.Runtime.InteropServices.DispId(2303)]
public object VCProjectEngine { [System.Runtime.InteropServices.DispId(2303)] get; }
[<System.Runtime.InteropServices.DispId(2303)>]
[<get: System.Runtime.InteropServices.DispId(2303)>]
member this.VCProjectEngine : obj
Public ReadOnly Property VCProjectEngine As Object
Property Value
An object pointer to the project engine.
- Attributes
Examples
[Visual Basic]
The following example uses the VCProjectEngine property in the development environment:
' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim filter As VCFilter
Dim col As IVCCollection
Dim ProjEng As VCProjectEngine
Dim prj As VCProject
prj = DTE.Solution.Projects.Item(1).Object
col = prj.Filters
ProjEng = col.VCProjectEngine
ProjEng.BuildTiming = False
End Sub
End Module
Remarks
See How to: Compile Example Code for Project Model Extensibility for information on how to compile and run this sample.