HtmlEditorSettings.RtfContentPastingProcessed Property
In This Article
Raised when the copied/cut RTF content is processed on the server.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.2.dll
NuGet Package: DevExpress.Web.Mvc5
#Declaration
public EventHandler<RtfContentPastingProcessedEventArgs> RtfContentPastingProcessed { get; set; }
#Property Value
Type | Description |
---|---|
Event |
A Event |
#Remarks
To paste the RTF content from a clipboard with the original formatting, set the HtmlEditorHtmlEditingSettings.ProcessRtfContentPastingOnServer property to true. It enables converting the RTF content to HTML on the server and then paste it to the editor.
The RtfContentPastingProcessed event allows you to process the HTML obtained from the copied/cut RTF before pasting to the HtmlEditor.
See Also