SelectionChanged イベント(ActiveX)

現在の PickFirst (編集コマンド選択前にクリック) の選択セットが変更されたときに開始されます。

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

構文と要素

VBA:

object.SelectionChanged()
object

タイプ: 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