RichEditBox.SelectionChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando varía la selección de texto.
// Register
event_token SelectionChanged(RoutedEventHandler const& handler) const;
// Revoke with event_token
void SelectionChanged(event_token const* cookie) const;
// Revoke with event_revoker
RichEditBox::SelectionChanged_revoker SelectionChanged(auto_revoke_t, RoutedEventHandler const& handler) const;
public event RoutedEventHandler SelectionChanged;
function onSelectionChanged(eventArgs) { /* Your code */ }
richEditBox.addEventListener("selectionchanged", onSelectionChanged);
richEditBox.removeEventListener("selectionchanged", onSelectionChanged);
- or -
richEditBox.onselectionchanged = onSelectionChanged;
Public Custom Event SelectionChanged As RoutedEventHandler
<RichEditBox SelectionChanged="eventhandler"/>