Dear all,
I am using below comand to export the information with ultragrid to PDF.
If the rows height is not sufficient to display the information in the PDF, How can I do?
I don't want to set the ultragrid properties such as rowsizing and cellmultiline. Can I set in the ultraGridDocumentExporter???
ultraGridDocumentExporter.Export(reportList, section)
report.Publish(dest, FileFormat.PDF);
Hi,
You have to set CellMultiline on the column, but you do not have to set it on the on-screen grid.
When you export to PDF, the UltraGridDocumentExporter creates a clone of the grid's DisplayLayout. So you can handle the BeginExport event and modify the e.Layout property any way you like and this will affect the export without affecting the grid on the screen. So you can do something like this:
e.Layout.Bands[0].Columns["My column"].CellMultiline = true;
Mike,
I am using IG2011v2. I am exporting the grid content to PDF. To wrap the content of grid columns i am using
"e.layout.bands(<bandno>).columns(<column>).cellmultiline = true" in the "BeginExport"
and
"e.Row.Performautosize" at "Initializerow".
This is working perfectly.
Like this is it possible to apply wrap for summary rows?
Are you talking about wrapping the summaries on the screen or in the pdf? Or both?
I don't think there is any word wrapping support for summary rows in either case.