DisplayAreaWatcher.EnumerationCompleted イベント

定義

ウォッチャー イベントの最初のパスが処理され、表示領域のコレクションが完了したときに発生します。

// Register
event_token EnumerationCompleted(TypedEventHandler<DisplayAreaWatcher, IInspectable const&> const& handler) const;

// Revoke with event_token
void EnumerationCompleted(event_token const* cookie) const;

// Revoke with event_revoker
DisplayAreaWatcher::EnumerationCompleted_revoker EnumerationCompleted(auto_revoke_t, TypedEventHandler<DisplayAreaWatcher, IInspectable const&> const& handler) const;
public event TypedEventHandler<DisplayAreaWatcher,object> EnumerationCompleted;
function onEnumerationCompleted(eventArgs) { /* Your code */ }
displayAreaWatcher.addEventListener("enumerationcompleted", onEnumerationCompleted);
displayAreaWatcher.removeEventListener("enumerationcompleted", onEnumerationCompleted);
- or -
displayAreaWatcher.onenumerationcompleted = onEnumerationCompleted;
Public Custom Event EnumerationCompleted As TypedEventHandler(Of DisplayAreaWatcher, Object) 

イベントの種類

適用対象

こちらもご覧ください