Version

ExportStarted Event

Occurs at the beginning of the export process. The ExportStartedEventArgs.ExportControl has been initialized but the Infragistics.Windows.DataPresenter.DataPresenterBase.DataSource has not yet been set.
Syntax
'Declaration
 
Public Event ExportStarted As EventHandler(Of ExportStartedEventArgs)
public event EventHandler<ExportStartedEventArgs> ExportStarted
Event Data

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

PropertyDescription
ExportControl Returns the Infragistics.Windows.DataPresenter.DataPresenterBase created for the export operation whose settings were initialized based on the Source control provided to the DataPresenterWordWriter.Export method.
Source Returns the Infragistics.Windows.DataPresenter.DataPresenterBase passed into the DataPresenterWordWriter.Export method.
Writer Returns the writer that will be used to perform the export operation and generate the Word document.
Remarks

The ExportControl argument returns a reference to the cloned object that is about to be exported.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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