Hi Infragistics Team ,
we are used Eraly version 10.0 now upgrading 2015 v1 pack .
I have one doubt ? see below code :
private void ExcelExporter_EndExport(object sender,EndExportEventArgs e)
{
//Set the header for the excel sheet
e.CurrentWorksheet.Rows[0].Cells[0].CellFormat.Font.Bold = ExcelDefaultableBoolean.True;
e.CurrentWorksheet.Rows[0].Cells[0].CellFormat.Font.Height = 300;
e.CurrentWorksheet.Rows[0].Cells[0].Value = settings.Header;
//Wrap text for the columns if its content is large
foreach(WorksheetColumn column in e.CurrentWorksheet.Columns)
if(column.Width > 30000)
column.CellFormat.WrapText = ExcelDefaultableBoolean.True;
column.Width = 30000;
}
Click Event(Export Data) using the code
================
ExcelExporter.EndExport += ExcelExporter_EndExport;
Above code is 10.0 version , this Event (End Export) is not available in 2015 v1 pack version . in this version which event is equal, we can't assign delegate event in latest version .
latest version Event are CellExported, cellexporting, on exported, onexporting etc ..
pls suggestion me which event is same in latest version 2015 v1 pack .
Hi Milko,
Please replay for above conversation . I want to know which event is replaced in infragistics 2015 v1 volume .
Thanks For Replay Milko,
Now we are using Infragistics 2015 v1 Volume . please tell me which event replace in 2015 v1Volume . yuor' said 2011 v1 pack . this event Not available in 2015 v1 Volume.
Hello Nagarajan,
Thank you for posting in our forum.
EndExport event was deprecated in Infragistics 2011 Volume 1. You may use ExportEnding and ExportEnded events as replacement for EndExport event. More information related to this you may find by following the next link http://help.infragistics.com/Doc/WinForms/current/CLR4.0/?page=Whats_New_Exporter_Events.html.
Please let me know if you need any additional information.
Thank you for using Infragistics Controls.