다음을 통해 공유


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 

설명

이 속성을 사용하여 코드 모듈 및 사용자 양식에 액세스할 수 있습니다.

적용 대상