'Declaration
Public Event TextChanging As EventHandler(Of C1TextChangedEventArgs)
public event EventHandler<C1TextChangedEventArgs> TextChanging
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.
Property | Description |
---|---|
Action | Returns the action performed on the text. |
Range | Returns the range of text changed. |
Source | Returns the C1.WPF.RichTextBox.Documents.C1TextElement where the change occurred. |
StyleProperty | Returns the StyleProperty that changed. |
See Also