'Declaration
Public Event ConvertingTextElement As EventHandler(Of ConvertingTextElementEventArgs)
public event 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.
Property | Description |
---|---|
Handled | Gets or sets whether the conversion is handled by the event handler. |
Parent | Gets the converted parent of the C1TextElement. |
TextElement | Gets the C1TextElement to be converted. |
See Also