Activate イベント(ActiveX)

ドキュメント ウィンドウがアクティブになったときに開始されます。

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

構文と要素

VBA:

object.Activate()
object

タイプ: Document

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

注意

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

VBA:

Private Sub AcadDocument_Activate()
    ' This example intercepts a drawing Activate event.
    '
    ' This event is triggered when a drawing window becomes active.
    '
    ' To trigger this example event: Either open a new drawing or switch from
    ' one drawing window to another

    MsgBox "You have just activated a drawing!"
End Sub

Visual LISP:

Not available