IScrollControllerPanningInfo.PanRequested イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ユーザーがタッチまたはペンでパンを開始しようとすると発生します。
// Register
event_token PanRequested(TypedEventHandler<IScrollControllerPanningInfo, ScrollControllerPanRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void PanRequested(event_token const* cookie) const;
// Revoke with event_revoker
IScrollControllerPanningInfo::PanRequested_revoker PanRequested(auto_revoke_t, TypedEventHandler<IScrollControllerPanningInfo, ScrollControllerPanRequestedEventArgs const&> const& handler) const;
event TypedEventHandler<IScrollControllerPanningInfo,ScrollControllerPanRequestedEventArgs> PanRequested;
function onPanRequested(eventArgs) { /* Your code */ }
iScrollControllerPanningInfo.addEventListener("panrequested", onPanRequested);
iScrollControllerPanningInfo.removeEventListener("panrequested", onPanRequested);
- or -
iScrollControllerPanningInfo.onpanrequested = onPanRequested;
Event PanRequested As TypedEventHandler(Of IScrollControllerPanningInfo, ScrollControllerPanRequestedEventArgs)