Condividi tramite


Proprietà DTE2.ActiveSolutionProjects

Ottiene una matrice di progetti attualmente selezionato.

Spazio dei nomi:  EnvDTE80
Assembly:  EnvDTE80 (in EnvDTE80.dll)

Sintassi

'Dichiarazione
ReadOnly Property ActiveSolutionProjects As Object
Object ActiveSolutionProjects { get; }
property Object^ ActiveSolutionProjects {
    Object^ get ();
}
abstract ActiveSolutionProjects : Object
function get ActiveSolutionProjects () : Object

Valore proprietà

Tipo: System.Object
Una matrice di progetti attualmente selezionato.

Esempi

Sub ActiveSolutionProjectsExample()
  Dim projs As System.Array
  Dim proj As Project
  projs = DTE2.ActiveSolutionProjects()
  If projs.Length > 0 Then
    proj = CType(projs.GetValue(0), EnvDTE.Project)
    MsgBox(proj.UniqueName)
  Else
    MsgBox(projs.Length)
  End If
End Sub

Sicurezza di .NET Framework

Vedere anche

Riferimenti

DTE2 Interfaccia

Overload ActiveSolutionProjects

Spazio dei nomi EnvDTE80