Class RichTextEditorTextChangedEventArgs
Provides data for editor text.
Inheritance
System.Object
RichTextEditorTextChangedEventArgs
Namespace: Syncfusion.Maui.RichTextEditor
Assembly: Syncfusion.Maui.RichTextEditor.dll
Syntax
public class RichTextEditorTextChangedEventArgs : EventArgs
Constructors
RichTextEditorTextChangedEventArgs(String, String)
Declaration
public RichTextEditorTextChangedEventArgs(string oldText, string newText)
Parameters
Type | Name | Description |
---|---|---|
System.String | oldText | |
System.String | newText |
Properties
NewText
Gets the new editor text after the change.
Declaration
public string NewText { get; }
Property Value
Type |
---|
System.String |
OldText
Gets the old editor text before the change.
Declaration
public string OldText { get; }
Property Value
Type |
---|
System.String |