AutoLISP 式の評価が完了した時点で開始されます。
サポートされているプラットフォーム: Windows のみ
VBA:
object.EndLISP()
タイプ: Application、Document
有効なコンテナ オブジェクトを評価するオブジェクト式この場合、有効なコンテナはアプリケーションとドキュメントです。
このイベントは AutoLISP 式評価の正常終了後、または AutoLISP 式評価のキャンセル後に発生します。
モーダル ダイアログが表示されている間、イベントは発生しません。
VBA:
Private Sub AcadDocument_EndLisp()
    ' This example intercepts a drawing BeginLisp event.
    '
    ' This event is triggered when a drawing finishes
    ' a the evaluation of a LISP expression.
    '
    ' To trigger this example event: Start the evaluation of a LISP expression and
    ' wait for it to finish being evaluated
    MsgBox "A LISP expression has just finished being evaluated!"
End Sub
Visual LISP:
Not available