Hi~
I met thefollowing issue when using UltraWinGrid..
When I try to export data with merged cells to excel, all of the merged cells are no longer merged in the exported excel file. Does that mean excel exporter does not support merged cell in win grid? Should I manually write merge logic in the events of exporter? If so, how can I set the merge cell when exporting data?
Thank you~
Excel export works fine - picks up merged state. It is PDF export that does not have as many features.
private void ultraGridExcelExporter1_CellExported(object sender, Infragistics.Win.UltraWinGrid.ExcelExport.CellExportedEventArgs e)
{
if (this.ultraCheckEditorMergeCells.Checked != true
return ;
)
I don't beleive this is currently supported for PDF exporting, either. You should once again Submit a feature request to Infragistics.
And DocumentExporter for PDF ?
can change but ,
e.CurrentWorksheet.MergedCellsRegions.Add( rowIndex, colIndex, rowIndex + (mergedCells.Length - 1), colIndex);
causes a problem ?????
please ?