次の方法で共有


SysSpatialInputDeviceWatcher.Updated イベント

定義

既存の空間入力デバイスのメタデータが更新されたときに発生するイベント。

重要

この API は、Windows オペレーティング システムのコンポーネントでのみ使用できます。 これらの API の呼び出しは、他のすべてのプロセスの実行時に失敗します。 これらの API は、今後の Windows リリースで変更または削除される可能性があります。

// Register
event_token Updated(TypedEventHandler<SysSpatialInputDeviceWatcher, SysSpatialInputDevice const&> const& handler) const;

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

// Revoke with event_revoker
SysSpatialInputDeviceWatcher::Updated_revoker Updated(auto_revoke_t, TypedEventHandler<SysSpatialInputDeviceWatcher, SysSpatialInputDevice const&> const& handler) const;
public event TypedEventHandler<SysSpatialInputDeviceWatcher,SysSpatialInputDevice> Updated;
function onUpdated(eventArgs) { /* Your code */ }
sysSpatialInputDeviceWatcher.addEventListener("updated", onUpdated);
sysSpatialInputDeviceWatcher.removeEventListener("updated", onUpdated);
- or -
sysSpatialInputDeviceWatcher.onupdated = onUpdated;
Public Custom Event Updated As TypedEventHandler(Of SysSpatialInputDeviceWatcher, SysSpatialInputDevice) 

イベントの種類

適用対象