AppCapture.CapturingChanged イベント

定義

キャプチャ状態が変更されたときに発生します。

// Register
event_token CapturingChanged(TypedEventHandler<AppCapture, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
AppCapture::CapturingChanged_revoker CapturingChanged(auto_revoke_t, TypedEventHandler<AppCapture, IInspectable const&> const& handler) const;
public event TypedEventHandler<AppCapture,object> CapturingChanged;
function onCapturingChanged(eventArgs) { /* Your code */ }
appCapture.addEventListener("capturingchanged", onCapturingChanged);
appCapture.removeEventListener("capturingchanged", onCapturingChanged);
- or -
appCapture.oncapturingchanged = onCapturingChanged;
Public Custom Event CapturingChanged As TypedEventHandler(Of AppCapture, Object) 

イベントの種類

注釈

警告

アプリが中断されている場合は、このイベントのハンドラーの登録を解除する必要があります。

適用対象