HtmlEdit.SelectionChanged Event
In This Article
Fires when the selection within the HtmlEdit is changed.
Namespace: DevExpress.Maui.HtmlEditor
Assembly: DevExpress.Maui.HtmlEditor.dll
NuGet Package: DevExpress.Maui.HtmlEditor
#Declaration
C#
public event EventHandler<ValueChangedEventArgs<HtmlSelectionRange>> SelectionChanged
#Event Data
The SelectionChanged event's data class is ValueChangedEventArgs<HtmlSelectionRange>. The following properties provide information specific to this event:
Property | Description |
---|---|
New |
Gets the new value. |
Old |
Gets the old value. |
See Also