次の方法で共有


MiracastReceiverCursorImageChannel.PositionChanged イベント

定義

カーソル イメージの位置が変更されたときに発生するイベント。

// Register
event_token PositionChanged(TypedEventHandler<MiracastReceiverCursorImageChannel, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
MiracastReceiverCursorImageChannel::PositionChanged_revoker PositionChanged(auto_revoke_t, TypedEventHandler<MiracastReceiverCursorImageChannel, IInspectable const&> const& handler) const;
public event TypedEventHandler<MiracastReceiverCursorImageChannel,object> PositionChanged;
function onPositionChanged(eventArgs) { /* Your code */ }
miracastReceiverCursorImageChannel.addEventListener("positionchanged", onPositionChanged);
miracastReceiverCursorImageChannel.removeEventListener("positionchanged", onPositionChanged);
- or -
miracastReceiverCursorImageChannel.onpositionchanged = onPositionChanged;
Public Custom Event PositionChanged As TypedEventHandler(Of MiracastReceiverCursorImageChannel, Object) 

イベントの種類

注釈

Position プロパティを使用して、カーソル イメージの最新の位置を取得します。

適用対象

こちらもご覧ください