Description
Occurs when evaluating of a LISP expression canceled.
Syntax
Visual Basic |
---|
Public Event LispCanceled() |
Example
The following example illustrates using the LispCancelled event with an Application object. To use the LispCancelled event with a Document or Workspace object, you do not need to initialize the App variable.
Public WithEvents App As Application
Sub init()
'To receive and handle events from IntelliCAD, first initialize the App variable.
Set App = ThisWorkspace.Application
End Sub
'Event handler
Private Sub App_LispCancelled()
' This example receives an Application LispCancelled event.
' This event occurs when evaluation of a LISP expression is cancelled.
' To fire this event:
' 1) Run init() function to initialize App variable.
' 2) Cancel a LISP expression.
MsgBox "A LISP expression was cancelled."
End Sub