HtmlEditorSettings.RtfContentPastingProcessed Property
Raised when the copied/cut RTF content is processed on the server.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
public EventHandler<RtfContentPastingProcessedEventArgs> RtfContentPastingProcessed { get; set; }
Property Value
Type | Description |
---|---|
EventHandler<RtfContentPastingProcessedEventArgs> | A EventHandler<TEventArgs><RtfContentPastingProcessedEventArgs,> delegate method allowing you to implement custom processing. |
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