Previous Document Next Document

Object Model Reference : Classes : A : Application : Properties : Application.VBE


Application.VBE

Property VBE As Object

Description

Member of Application

The VBE property returns a read-only reference to the Macro Editor.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.