_Solution::Projects Property

 

Gets a collection of the projects currently in the solution.

Namespace:   EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

property Projects^ Projects {
	Projects^ get();
}

Property Value

Type: EnvDTE::Projects^

A Projects collection.

Sub ProjectsExample()
   ' Open a solution before running this example.
   Dim soln As Solution

   ' Create a reference to the solution.
   soln = DTE.Solution

   ' List the number of projects.
   MsgBox(soln.Projects.Count)
End Sub
Return to top
Show: