ObjectModified イベント(ActiveX)

図面内のオブジェクトが修正されたときに開始されます。

サポートされているプラットフォーム: Windows のみ

構文と要素

VBA:

object.ObjectModified(Entity)
object

タイプ: Document

有効なコンテナ オブジェクトを評価するオブジェクト式この場合、有効なコンテナはドキュメントだけです。

図形

タイプ: Document; ハンドラへの入力

図面内の変更されたオブジェクト。図形オブジェクトの 1 つ。

注意

このイベントは、変更操作の完了後に発生します。

モーダル ダイアログが表示されている間、イベントは発生しません。

VBA:

Private Sub AcadDocument_ObjectModified(ByVal Object As Object)
    ' This example intercepts a drawing ObjectModified event.
    '
    ' This event is triggered when an object in a drawing is modified.
    '
    ' To trigger this example event: Modify an object in any open drawing

    ' Use the "Object" variable to determine the type of object modified
    MsgBox "A " & TypeName(Object) & " was just modified!"
End Sub

Visual LISP:

Not available