ComponentOne RichTextBox for UWP
TextChanged Event (C1TextElement)

C1.Xaml.RichTextBox.Documents Namespace > C1TextElement Class : TextChanged Event
Fires after a text change occurs in the sub tree where this element is root.
Syntax
'Declaration
 
Public Event TextChanged As System.EventHandler(Of C1TextChangedEventArgs)
public event System.EventHandler<C1TextChangedEventArgs> TextChanged
Event Data

The event handler receives an argument of type C1TextChangedEventArgs containing data related to this event. The following C1TextChangedEventArgs properties provide information specific to this event.

PropertyDescription
Returns the action performed on the text.  
Returns the range of text changed.  
Returns the C1TextElement where the change occurred.  
Returns the StyleProperty that changed.  
See Also