RichEditBox.TextChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when content changes in the RichEditBox.
// Register
event_token TextChanged(RoutedEventHandler const& handler) const;
// Revoke with event_token
void TextChanged(event_token const* cookie) const;
// Revoke with event_revoker
RichEditBox::TextChanged_revoker TextChanged(auto_revoke_t, RoutedEventHandler const& handler) const;
public event RoutedEventHandler TextChanged;
function onTextChanged(eventArgs) { /* Your code */ }
richEditBox.addEventListener("textchanged", onTextChanged);
richEditBox.removeEventListener("textchanged", onTextChanged);
- or -
richEditBox.ontextchanged = onTextChanged;
Public Custom Event TextChanged As RoutedEventHandler
<RichEditBox TextChanged="eventhandler"/>