Version

TextExported Event

Occurs before the FormattedTextEditor text node export ends.
Syntax
'Declaration
 
Public Event TextExported As EventHandler(Of TextExportedEventArgs)
public event EventHandler<TextExportedEventArgs> TextExported
Event Data

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

PropertyDescription
Text Gets the text exported to Word
Remarks

The TextExportedEventArgs.Text is a copy of the text which is exported to word.

This event is fired before all other events when the Export(String,WordDocumentWriter) method is called. You can use it to do any preprocessing before exporting process starts.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also