Interfaccia Projects
Rappresenta tutti i progetti di un determinato tipo.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
<GuidAttribute("E3EC0ADD-31B3-461F-8303-8A5E6931257A")> _
Public Interface Projects _
Inherits IEnumerable
[GuidAttribute("E3EC0ADD-31B3-461F-8303-8A5E6931257A")]
public interface Projects : IEnumerable
[GuidAttribute(L"E3EC0ADD-31B3-461F-8303-8A5E6931257A")]
public interface class Projects : IEnumerable
[<GuidAttribute("E3EC0ADD-31B3-461F-8303-8A5E6931257A")>]
type Projects =
interface
interface IEnumerable
end
public interface Projects extends IEnumerable
Il tipo Projects espone i seguenti membri.
Proprietà
Nome | Descrizione | |
---|---|---|
Count | Ottiene un valore che indica il numero di oggetti nell'insieme Projects. | |
DTE | Ottiene l'oggetto estensibilità di primo livello. | |
Kind | Ottiene una stringa GUID che indica il tipo dell'oggetto. | |
Parent | Ottiene l'oggetto padre di un insieme Projects. | |
Properties | Ottiene un insieme di tutte le proprietà relative all'insieme Projects. |
In alto
Metodi
Nome | Descrizione | |
---|---|---|
GetEnumerator() | Viene restituito un enumeratore che scorre un insieme. (Ereditato da IEnumerable) | |
GetEnumerator() | Ottiene un'enumerazione per gli elementi nell'insieme. | |
Item | Restituisce un membro indicizzato di un insieme Projects. |
In alto
Note
L'insieme Projects rappresenta tutti i progetti dello stesso tipo nell'istanza corrente dell'ambiente di sviluppo integrato (IDE). Generalmente per questo insieme è prevista l'associazione tardiva all'oggetto DTE.
Esempi
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