ReportViewer.RenderingBegin Event

 

Occurs when the report in the ReportViewer begins rendering.

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

Syntax

public event CancelEventHandler RenderingBegin
public:
event CancelEventHandler^ RenderingBegin {
    void add(CancelEventHandler^ value);
    void remove(CancelEventHandler^ value);
}
member RenderingBegin : IEvent<CancelEventHandler,
    CancelEventArgs>
Public Event RenderingBegin As CancelEventHandler

Remarks

This event occurs when the report begins rendering. Information about this event is passed in a CancelEventArgs object to a CancelEventHandler 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