Projects Interface
Visual Studio 2015
Represents all of the projects of a given kind.
Assembly: EnvDTE (in EnvDTE.dll)
| Name | Description | |
|---|---|---|
![]() | Count | Gets a value indicating the number of objects in the Projects collection. |
![]() | DTE | Gets the top-level extensibility object. |
![]() | Kind | Gets a GUID String indicating the kind or type of the object. |
![]() | Parent | Gets the immediate parent object of a Projects collection. |
![]() | Properties | Gets a collection of all properties that pertain to the Projects collection. |
| Name | Description | |
|---|---|---|
![]() | GetEnumerator() | Gets an enumerator for items in the collection. |
![]() | Item(Object^) | Returns an indexed member of a Projects collection. |
The Projects collection represents all projects of the same kind in the current instance of the integrated development environment (IDE). Typically, this collection is late-bound to the DTE object.
Sub ProjectsExample() ' Before running, be sure you have one or more projects ' loaded in the solution. Dim prj As Project Dim prjs As Projects Dim msg As String ' Go through all of the projects in the solution and display ' their names and types. prjs = DTE.Solution.Projects For Each prj In prjs msg += "NAME: " & prj.Name & "TYPE: " & prj.Kind & vbCr Next MsgBox(msg) End Sub
Show:

