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 

注解

使用此属性可以访问代码模块和用户表单。

适用于