次の方法で共有


DocumentBase.VBProject プロパティ

定義

ドキュメントの Microsoft.Vbe.Interop.VBProject を取得します。

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

プロパティ値

ドキュメントの Microsoft.Vbe.Interop.VBProject。

次のコード例では、 プロパティをVBProject使用して、ドキュメントのVisual Basic for Applications プロジェクトの名前を表示します。 この例を使用するには、ドキュメント レベルのプロジェクトの ThisDocument クラスから実行します。

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 

注釈

コード モジュールとユーザー フォームにアクセスするには、このプロパティを使用します。

適用対象