I'm hoping this might be my last question :)
How can I cancel an export?
RowExporting and setting cancel cancels the export for that row...hwo can I terminate the entire export?
Peter
Hi Peter,
You can use the InitializeRow event on the Exporter. Like so:
private void ultraGridExcelExporter1_InitializeRow(object sender, Infragistics.Win.UltraWinGrid.ExcelExport.ExcelExportInitializeRowEventArgs e) { e.TerminateExport = true; }