RichEditBox.ContentLinkInvoked イベント

定義

ユーザーの操作によってリンクがアクティブ化されるときに発生します。

// Register
event_token ContentLinkInvoked(TypedEventHandler<RichEditBox, ContentLinkInvokedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
RichEditBox::ContentLinkInvoked_revoker ContentLinkInvoked(auto_revoke_t, TypedEventHandler<RichEditBox, ContentLinkInvokedEventArgs const&> const& handler) const;
public event TypedEventHandler<RichEditBox,ContentLinkInvokedEventArgs> ContentLinkInvoked;
function onContentLinkInvoked(eventArgs) { /* Your code */ }
richEditBox.addEventListener("contentlinkinvoked", onContentLinkInvoked);
richEditBox.removeEventListener("contentlinkinvoked", onContentLinkInvoked);
- or -
richEditBox.oncontentlinkinvoked = onContentLinkInvoked;
Public Custom Event ContentLinkInvoked As TypedEventHandler(Of RichEditBox, ContentLinkInvokedEventArgs) 

イベントの種類

Windows の要件

デバイス ファミリ
Windows 10, version 1803 (10.0.17134.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v6.0 で導入)

注釈

重要

この API では、コンテンツ リンクがサポートされています。 コンテンツ リンクを可能にする Windows の機能は、Windows 10 バージョン 1903 より後のバージョンの Windows では利用できません。 XAML テキスト コントロールのコンテンツ リンクは、バージョン 1903 より後のバージョンの Windows では機能しません。

適用対象