PenButtonListener.TailButtonLongPressed 事件

定義

發生于使用者按下並按住手寫筆尾端的按鈕時。

// Register
event_token TailButtonLongPressed(TypedEventHandler<PenButtonListener, PenTailButtonLongPressedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
PenButtonListener::TailButtonLongPressed_revoker TailButtonLongPressed(auto_revoke_t, TypedEventHandler<PenButtonListener, PenTailButtonLongPressedEventArgs const&> const& handler) const;
public event TypedEventHandler<PenButtonListener,PenTailButtonLongPressedEventArgs> TailButtonLongPressed;
function onTailButtonLongPressed(eventArgs) { /* Your code */ }
penButtonListener.addEventListener("tailbuttonlongpressed", onTailButtonLongPressed);
penButtonListener.removeEventListener("tailbuttonlongpressed", onTailButtonLongPressed);
- or -
penButtonListener.ontailbuttonlongpressed = onTailButtonLongPressed;
Public Custom Event TailButtonLongPressed As TypedEventHandler(Of PenButtonListener, PenTailButtonLongPressedEventArgs) 

事件類型

適用於

另請參閱