[]
Occurs before the viewer refreshes the report.
public event EventHandler RefreshReport
Type | Description |
---|---|
EventHandler | Occurs before the viewer refreshes the report. |
This event is triggered in several scenarios, including:
viewer.RefreshReport += (sender, e) =>
{
// Custom logic upon report refresh
// For example, enable a 'Save' button only after the report has been refreshed
saveReportButton.Enabled = true;
};