ComponentOne RichTextBox for WPF and Silverlight
ConvertingTextElement Event (HtmlFilter)

C1.WPF.RichTextBox.Documents Namespace > HtmlFilter Class : ConvertingTextElement Event
Fires when a C1TextElement is being converted to a C1HtmlNode.
Syntax
'Declaration
 
Public Event ConvertingTextElement As System.EventHandler(Of ConvertingTextElementEventArgs)
public event System.EventHandler<ConvertingTextElementEventArgs> ConvertingTextElement
Event Data

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

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