ComponentOne RichTextBox for WPF and Silverlight
ConvertingHtmlNode Event (HtmlFilter)

C1.WPF.RichTextBox.Documents Namespace > HtmlFilter Class : ConvertingHtmlNode Event
Fires when a C1HtmlNode is being converted to a C1TextElement.
Syntax
'Declaration
 
Public Event ConvertingHtmlNode As System.EventHandler(Of ConvertingHtmlNodeEventArgs)
public event System.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