DocumentBase.VBProject Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene Microsoft.Vbe.Interop.VBProject per il documento.
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
Valore della proprietà
Microsoft.Vbe.Interop.VBProject per il documento.
Esempio
Nell'esempio di codice seguente viene usata la VBProject proprietà per visualizzare il nome del progetto Visual Basic, Applications Edition per il documento. Per usare questo esempio, eseguirlo dalla ThisDocument
classe in un progetto a livello di documento.
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
Commenti
Usare questa proprietà per ottenere l'accesso ai moduli di codice e ai moduli utente.