다음을 통해 공유


InkStrokeInput.StrokeCanceled 이벤트

정의

잉크 입력이 상황에 맞는 메뉴와 같은 다른 시스템 이벤트 처리기까지 거품이 발생할 때 발생합니다.

// Register
event_token StrokeCanceled(TypedEventHandler<InkStrokeInput, PointerEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
InkStrokeInput::StrokeCanceled_revoker StrokeCanceled(auto_revoke_t, TypedEventHandler<InkStrokeInput, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<InkStrokeInput,PointerEventArgs> StrokeCanceled;
function onStrokeCanceled(eventArgs) { /* Your code */ }
inkStrokeInput.addEventListener("strokecanceled", onStrokeCanceled);
inkStrokeInput.removeEventListener("strokecanceled", onStrokeCanceled);
- or -
inkStrokeInput.onstrokecanceled = onStrokeCanceled;
Public Custom Event StrokeCanceled As TypedEventHandler(Of InkStrokeInput, PointerEventArgs) 

이벤트 유형

적용 대상

추가 정보