Condividi tramite


Proprietà VSProject.Project

Ottiene l'oggetto generico Project associato al progetto Visual Basic, Visual C# o Visual J#. Di sola lettura.

Spazio dei nomi: VSLangProj
Assembly: VSLangProj (in vslangproj.dll)

Sintassi

'Dichiarazione
'Utilizzo

Valore proprietà

Restituisce un oggetto Project.

Note

L'oggetto VSProject è la proprietà di un oggetto Project generico. La proprietà Project fornisce accesso all'oggetto Project con estensibilità generale.

Esempio

' Macro Editor
Imports VSLangProj
' Displays whether project has unsaved changes.
Sub IsProjectSaved(ByVal aVSProject As VSProject)
   Dim theProject As EnvDTE.Project
   theProject = aVSProject.Project
   If (theProject.Saved) Then
      MsgBox(theProject.Name & " is saved.")
   Else
      MsgBox(theProject.Name & " is not saved.")
   End If
End Sub

Vedere anche

Riferimenti

Interfaccia VSProject
Membri VSProject
Spazio dei nomi VSLangProj