Aracılığıyla paylaş


DTE2.ActiveSolutionProjects Özellik

Seçili projeler dizisi alır.

Ad alanı:  EnvDTE80
Derleme:  EnvDTE80 (EnvDTE80.dll içinde)

Sözdizimi

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

Özellik Değeri

Tür: System.Object
Seçili projeler dizisi.

Örnekler

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

.NET Framework Güvenliği

Ayrıca bkz.

Başvuru

DTE2 Arabirim

ActiveSolutionProjects Fazla Yük

EnvDTE80 Ad Alanı