Click here to Skip to main content
15,895,011 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi
I am using this code.
C#
ExportOptions exportOpts = new ExportOptions();
  ExcelFormatOptions excelFormatOpts = new ExcelFormatOptions();
  DiskFileDestinationOptions diskOpts = new DiskFileDestinationOptions();
  exportOpts = _myReport.ExportOptions;
  excelFormatOpts.ExcelUseConstantColumnWidth = true; // Setting column width constant
  exportOpts.ExportFormatType = ExportFormatType.Excel;
  exportOpts.FormatOptions = excelFormatOpts;
  // Set the disk file options and export.
  exportOpts.ExportDestinationType = ExportDestinationType.DiskFile;
  diskOpts.DiskFileName = "D:\\RnD\\abc.xls";
  exportOpts.DestinationOptions = diskOpts;
  _myReport.Export();


Here I am getting columns are having constant width. But I need to maintain rows as well.
Finally I have to display constant width and rows with grid lines.

Any help appreciated!
Posted
Updated 17-May-13 1:51am
v2

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900