다음을 통해 공유


PenDockListener.IsSupportedChanged 이벤트

정의

펜 도킹 이벤트의 가용성이 변경되면 발생합니다(펜 설정은 사용자 또는 시스템 지원 변경에 의해 변경됨).

// Register
event_token IsSupportedChanged(TypedEventHandler<PenDockListener, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
PenDockListener::IsSupportedChanged_revoker IsSupportedChanged(auto_revoke_t, TypedEventHandler<PenDockListener, IInspectable const&> const& handler) const;
public event TypedEventHandler<PenDockListener,object> IsSupportedChanged;
function onIsSupportedChanged(eventArgs) { /* Your code */ }
penDockListener.addEventListener("issupportedchanged", onIsSupportedChanged);
penDockListener.removeEventListener("issupportedchanged", onIsSupportedChanged);
- or -
penDockListener.onissupportedchanged = onIsSupportedChanged;
Public Custom Event IsSupportedChanged As TypedEventHandler(Of PenDockListener, Object) 

이벤트 유형

적용 대상