VSProject.Project, propriété
Obtient l'objet Project générique associé au projet Visual Basic, Visual C# ou Visual J#. Lecture seule.
Espace de noms: VSLangProj
Assembly : VSLangProj (dans vslangproj.dll)
Syntaxe
'Déclaration
'Utilisation
Valeur de la propriété
Retourne un objet Project.
Notes
L'objet VSProject est une propriété d'un objet Project générique. La propriété Project offre un accès à l'objet Project d'extensibilité générale.
Exemple
' 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
Voir aussi
Référence
VSProject, interface
Membres VSProject
VSLangProj, espace de noms