RichEditBox.SelectionChanging Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando a seleção de texto começa a ser alterada.
// Register
event_token SelectionChanging(TypedEventHandler<RichEditBox, RichEditBoxSelectionChangingEventArgs const&> const& handler) const;
// Revoke with event_token
void SelectionChanging(event_token const* cookie) const;
// Revoke with event_revoker
RichEditBox::SelectionChanging_revoker SelectionChanging(auto_revoke_t, TypedEventHandler<RichEditBox, RichEditBoxSelectionChangingEventArgs const&> const& handler) const;
public event TypedEventHandler<RichEditBox,RichEditBoxSelectionChangingEventArgs> SelectionChanging;
function onSelectionChanging(eventArgs) { /* Your code */ }
richEditBox.addEventListener("selectionchanging", onSelectionChanging);
richEditBox.removeEventListener("selectionchanging", onSelectionChanging);
- or -
richEditBox.onselectionchanging = onSelectionChanging;
Public Custom Event SelectionChanging As TypedEventHandler(Of RichEditBox, RichEditBoxSelectionChangingEventArgs)
<RichEditBox SelectionChanging="eventhandler"/>
Tipo de evento
Requisitos do Windows
Família de dispositivos |
Windows 10, version 1809 (introduzida na 10.0.17763.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduzida na v7.0)
|