Freigeben über


CoreTextEditContext.SelectionUpdating Ereignis

Definition

Tritt auf, wenn der Texteingabeserver den Textbereich ändern muss, der derzeit im Texteingabesteuerelement ausgewählt ist. Dieses Ereignis kann das Ergebnis eines Eingabeprozessors sein, der Text auswählen oder das Caretzeichen verschieben muss. Das Texteingabesteuerelement sollte seinen Auswahlbereich entsprechend festlegen.

// Register
event_token SelectionUpdating(TypedEventHandler<CoreTextEditContext, CoreTextSelectionUpdatingEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
CoreTextEditContext::SelectionUpdating_revoker SelectionUpdating(auto_revoke_t, TypedEventHandler<CoreTextEditContext, CoreTextSelectionUpdatingEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreTextEditContext,CoreTextSelectionUpdatingEventArgs> SelectionUpdating;
function onSelectionUpdating(eventArgs) { /* Your code */ }
coreTextEditContext.addEventListener("selectionupdating", onSelectionUpdating);
coreTextEditContext.removeEventListener("selectionupdating", onSelectionUpdating);
- or -
coreTextEditContext.onselectionupdating = onSelectionUpdating;
Public Custom Event SelectionUpdating As TypedEventHandler(Of CoreTextEditContext, CoreTextSelectionUpdatingEventArgs) 

Ereignistyp

Gilt für: