aspnet-devexpress-dot-web-dot-aspxhtmleditor-149f042b.md
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
public class HtmlCorrectingEventArgs :
EventArgs
Public Class HtmlCorrectingEventArgs
Inherits EventArgs
HtmlCorrectingEventArgs is the data class for the following events:
HtmlCorrectingEventArgs objects with proper settings are automatically created and passed to the corresponding event handlers.
<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" OnHtmlCorrecting="ASPxHtmlEditor1_HtmlCorrecting" runat="server">
...
</dx:ASPxHtmlEditor>
protected void ASPxHtmlEditor1_HtmlCorrecting(object sender, DevExpress.Web.ASPxHtmlEditor.HtmlCorrectingEventArgs e)
{
e.Handled = true;
}
Object EventArgs HtmlCorrectingEventArgs
See Also