RichTextBox for WPF | ComponentOne
C1.WPF.RichTextBox Namespace / C1RichTextBox Class / TextChanged Event

In This Topic
    TextChanged Event (C1RichTextBox)
    In This Topic
    Fired when there is a change in the document.
    Syntax
    'Declaration
     
    
    Public Event TextChanged As EventHandler(Of C1TextChangedEventArgs)
    public event 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 C1.WPF.RichTextBox.Documents.C1TextElement where the change occurred.  
    Returns the StyleProperty that changed.  
    See Also