Back to Devexpress

HtmlCorrectingEventArgs Class

aspnet-devexpress-dot-web-dot-aspxhtmleditor-149f042b.md

latest1.9 KB
Original Source

HtmlCorrectingEventArgs Class

Provides data for the ASPxHtmlEditor.HtmlCorrecting event that allows any custom check or transformation of the editor’s HTML code to be perfromed.

Namespace : DevExpress.Web.ASPxHtmlEditor

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

NuGet Package : DevExpress.Web

Declaration

csharp
public class HtmlCorrectingEventArgs :
    EventArgs
vb
Public Class HtmlCorrectingEventArgs
    Inherits EventArgs

HtmlCorrectingEventArgs is the data class for the following events:

Remarks

HtmlCorrectingEventArgs objects with proper settings are automatically created and passed to the corresponding event handlers.

aspx
<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" OnHtmlCorrecting="ASPxHtmlEditor1_HtmlCorrecting" runat="server">
...
</dx:ASPxHtmlEditor>
csharp
protected void ASPxHtmlEditor1_HtmlCorrecting(object sender, DevExpress.Web.ASPxHtmlEditor.HtmlCorrectingEventArgs e)
{
    e.Handled = true;
}

Inheritance

Object EventArgs HtmlCorrectingEventArgs

See Also

HtmlCorrectingEventArgs Members

DevExpress.Web.ASPxHtmlEditor Namespace