ReportViewer.ReportExport Event

 

Occurs when the user clicks the Export button.

Namespace:   Microsoft.Reporting.WinForms
Assembly:  Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)

Syntax

public event ExportEventHandler ReportExport
public:
event ExportEventHandler^ ReportExport {
    void add(ExportEventHandler^ value);
    void remove(ExportEventHandler^ value);
}
member ReportExport : IEvent<ExportEventHandler,
    ReportExportEventArgs>
Public Event ReportExport As ExportEventHandler

Remarks

This event occurs when the user clicks the Export button, before the report is actually exported. Information about this event is passed in a ReportExportEventArgs object to the ExportEventHandler delegate, which handles the event.

For more information about handling events, see NIB: Consuming Events.

See Also

ReportViewer Class
Microsoft.Reporting.WinForms Namespace

Return to top