DocumentBase.VBProject Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient le Microsoft.Vbe.Interop.VBProject pour le document.
public:
property Microsoft::Vbe::Interop::VBProject ^ VBProject { Microsoft::Vbe::Interop::VBProject ^ get(); };
public Microsoft.Vbe.Interop.VBProject VBProject { get; }
member this.VBProject : Microsoft.Vbe.Interop.VBProject
Public ReadOnly Property VBProject As VBProject
Valeur de propriété
Microsoft.Vbe.Interop.VBProject pour le document.
Exemples
L’exemple de code suivant utilise la VBProject propriété pour afficher le nom du projet Visual Basic pour Applications pour le document. Pour utiliser cet exemple, exécutez-le à partir de la ThisDocument
classe dans un projet au niveau du document.
private void DocumentVBProject()
{
MessageBox.Show("The name of the VB project is: " +
this.VBProject.Name);
}
Private Sub DocumentVBProject()
MessageBox.Show("The name of the VB project is: " & Me.VBProject.Name)
End Sub
Remarques
Utilisez cette propriété pour accéder aux modules de code et aux formulaires utilisateur.