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

ASPxHtmlEditor.RtfContentPastingProcessed Event

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

Namespace: DevExpress.Web.ASPxHtmlEditor

Assembly: DevExpress.Web.ASPxHtmlEditor.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public event EventHandler<RtfContentPastingProcessedEventArgs> RtfContentPastingProcessed

Event Data

The RtfContentPastingProcessed event's data class is RtfContentPastingProcessedEventArgs. The following properties provide information specific to this event:

Property Description
Html Gets or sets the HTML content obtained from the processed RTF content.

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 ASPxHtmlEditor.

protected void ASPxHtmlEditor1_RtfContentPastingProcessed(object sender, RtfContentPastingProcessedEventArgs e) {
    e.Html = string.Format("<div class='rtf-container'>{0}</div>", e.Html);
}
See Also