現在の PickFirst (編集コマンド選択前にクリック) の選択セットが変更されたときに開始されます。
サポートされているプラットフォーム: Windows のみ
VBA:
object.SelectionChanged()
タイプ: Document
有効なコンテナ オブジェクトを評価するオブジェクト式この場合、有効なコンテナはドキュメントだけです。
モーダル ダイアログが表示されている間、イベントは発生しません。
VBA:
Private Sub AcadDocument_SelectionChanged()
' This example intercepts a drawing SelectionChanged event.
'
' This event is triggered when the current selection set in a drawing is modified.
'
' To trigger this example event: Select or deselect objects in any open drawing
MsgBox "The selection set in a drawing was just changed!"
End Sub
Visual LISP:
Not available