Compartir a través de


DTE2.ActiveSolutionProjects (Propiedad)

Obtiene una matriz de proyectos seleccionados actualmente.

Espacio de nombres:  EnvDTE80
Ensamblado:  EnvDTE80 (en EnvDTE80.dll)

Sintaxis

'Declaración
ReadOnly Property ActiveSolutionProjects As Object
    Get
Object ActiveSolutionProjects { get; }
property Object^ ActiveSolutionProjects {
    Object^ get ();
}
abstract ActiveSolutionProjects : Object
function get ActiveSolutionProjects () : Object

Valor de propiedad

Tipo: System.Object
Una matriz de proyectos seleccionados actualmente.

Implementaciones

_DTE.ActiveSolutionProjects

Ejemplos

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

Seguridad de .NET Framework

Vea también

Referencia

DTE2 Interfaz

ActiveSolutionProjects (Sobrecarga)

EnvDTE80 (Espacio de nombres)