Object Model Reference : Classes : A : Application : Properties : Application.VBE |
Property VBE As Object
Member of Application
The VBE property returns a read-only reference to the Macro Editor.
The following VBA example displays the editor type name in the Debug window of the Macro Editor in CorelDRAW.
Sub AppVBE() |
Dim obj as Object |
Set obj = Application.VBE |
Debug.Print TypeName (obj) |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.