AutoLISP 式の評価がキャンセルされたときに開始されます。
サポートされているプラットフォーム: Windows のみ
VBA:
object.LISPCancelled()
タイプ: Application、Document
有効なコンテナ オブジェクトを評価するオブジェクト式この場合、有効なコンテナはアプリケーションとドキュメントです。
モーダル ダイアログが表示されている間、イベントは発生しません。
VBA:
Private Sub AcadDocument_LispCancelled()
    ' This example intercepts a drawing LispCancelled event.
    '
    ' This event is triggered when the evaluation of a LISP expression is cancelled.
    '
    ' To trigger this example event: Run a LISP expression and
    ' cancel the LISP evaluation before it finishes
    MsgBox "A LISP evaluation was just cancelled."
End Sub
Visual LISP:
Not available