'Declaration Public Event ExportEnding As EventHandler(Of ExportEndingEventArgs)
public event EventHandler<ExportEndingEventArgs> ExportEnding
The event handler receives an argument of type ExportEndingEventArgs containing data related to this event. The following ExportEndingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Canceled | True if the exporting process was canceled. |
The ExportEndingEventArgs.Canceled argument is True if the exporting process was canceled.
The ExportEnding event is invoked when the export process has completed to give the developer one final opportunity to manipulate the document being generated. This is particularly important when using an overload of the Export method that takes a filename as the file will be saved after the ExportEnding is complete but before the ExportEnded so it will not be possible to make changes to the document after the ExportEnding event has fired. Also, since the file will not have been created until after the ExportEnding event fires, the file cannot be accessed until the ExportEnded event.
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