After you dimension the export object's variable, but before you export the report, you can set any of the following properties:
Example[C#]DataDynamics.ActiveReports.Export.Xls.XlsExport x = new DataDynamics.ActiveReports.Export.Xls.ExcelExport();x.MinRowHeight=1;x.MultiSheet=true;x.RemoveVerticalSpace=true;x.UseCellMerging=false;x.MinColumnWidth=1;x.FileFormat=DataDynamics.ActiveReports.Export.Xls.FileFormat.Xls95;x.AutoRowHeight=true;x.DisplayGridLines=true;x.Export(this.viewer1.Document, Application.StartupPath + \\YourReport.xls);[Visual Basic] Dim x As New DataDynamics.ActiveReports.Export.Xls.XlsExport()x.AutoRowHeight = Truex.DisplayGridLines = Truex.FileFormat = DataDynamics.ActiveReports.Export.Xls.FileFormat.Xls95x.MinColumnWidth = 1x.MinRowHeight = 1x.MultiSheet = Truex.RemoveVerticalSpace = Truex.UseCellMerging = Truex.Export(Me.Viewer1.Document, Application.StartupPath + "\\YourReport.xls")