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) 

이벤트 유형

적용 대상

추가 정보