Skip to main content
A newer version of this page is available. .

HtmlEditorSettings.RtfContentPastingProcessed Property

Raised when the copied/cut RTF content is processed on the server.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v18.2.dll

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 processing the HTML obtained from the copied/cut RTF before pasting to the HtmlEditor.

See Also