CoreTextEditContext.LayoutRequested Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando il server di input di testo deve ottenere il rettangolo di selezione di un intervallo di testo e del controllo input di testo stesso. L'applicazione deve gestire questo evento e restituire le informazioni geometry richieste.
// Register
event_token LayoutRequested(TypedEventHandler<CoreTextEditContext, CoreTextLayoutRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void LayoutRequested(event_token const* cookie) const;
// Revoke with event_revoker
CoreTextEditContext::LayoutRequested_revoker LayoutRequested(auto_revoke_t, TypedEventHandler<CoreTextEditContext, CoreTextLayoutRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreTextEditContext,CoreTextLayoutRequestedEventArgs> LayoutRequested;
function onLayoutRequested(eventArgs) { /* Your code */ }
coreTextEditContext.addEventListener("layoutrequested", onLayoutRequested);
coreTextEditContext.removeEventListener("layoutrequested", onLayoutRequested);
- or -
coreTextEditContext.onlayoutrequested = onLayoutRequested;
Public Custom Event LayoutRequested As TypedEventHandler(Of CoreTextEditContext, CoreTextLayoutRequestedEventArgs)