RichEditBox.ContentLinkInvoked Ereignis

Definition

Tritt auf, wenn der Link durch Benutzerinteraktion aktiviert wird.

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

Ereignistyp

Windows-Anforderungen

Gerätefamilie
Windows 10, version 1803 (eingeführt in 10.0.17134.0)
API contract
Windows.Foundation.UniversalApiContract (eingeführt in v6.0)

Hinweise

Wichtig

Diese API unterstützt Inhaltslinks. Die Windows-Features, die Inhaltsverknüpfungen ermöglichen, sind in Windows-Versionen nach Windows 10, Version 1903, nicht mehr verfügbar. Inhaltsverknüpfungen für XAML-Textsteuerelemente funktionieren in Windows-Versionen nach Version 1903 nicht mehr.

Gilt für: