RichTextBox for WPF | ComponentOne
C1.WPF.RichTextBox.Documents Namespace / HtmlFilter Class / ConvertingHtmlNode Event

In This Topic
    ConvertingHtmlNode Event (HtmlFilter)
    In This Topic
    Fires when a C1HtmlNode is being converted to a C1TextElement.
    Syntax
    'Declaration
     
    
    Public Event ConvertingHtmlNode As EventHandler(Of ConvertingHtmlNodeEventArgs)
    public event EventHandler<ConvertingHtmlNodeEventArgs> ConvertingHtmlNode
    Event Data

    The event handler receives an argument of type ConvertingHtmlNodeEventArgs containing data related to this event. The following ConvertingHtmlNodeEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets or sets whether the conversion is handled by the event handler.  
    Gets the C1HtmlNode to be converted.  
    Gets the converted parent of the C1HtmlNode.  
    See Also