PenButtonListener.TailButtonLongPressed Event

Definition

Occurs when the user presses and holds the button on the tail end of the pen.

// 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) 

Event Type

Applies to

See also