ActiveReports 6 Online Help
RemoveVerticalSpace Property (XlsExport)
Example 

Sets or returns a value that indicates whether completely empty vertical spacing will be removed from the output.
Syntax
'Declaration
 
Public Property RemoveVerticalSpace As Boolean
public bool RemoveVerticalSpace {get; set;}

Property Value

Boolean. The default value is False.
Remarks
This may improve pagination if you wish to print the output from Excel.
Example
DataDynamics.ActiveReports.Export.Xls.XlsExport docexp = new DataDynamics.ActiveReports.Export.Xls.XlsExport();
docexp.AutoRowHeight=true;
docexp.DisplayGridLines=true;
docexp.FileFormat=DataDynamics.ActiveReports.Export.Xls.FileFormat.Xls95; //or Xls97Plus
docexp.MinColumnWidth=3;
docexp.MinRowHeight=1;
docexp.MultiSheet=true;
docexp.RemoveVerticalSpace=true;
docexp.UseCellMerging=false;
docexp.Export(this.viewer1.Document, Application.StartupPath + "\\x.xls");
Dim docexp As New DataDynamics.ActiveReports.Export.Xls.XlsExport()
docexp.AutoRowHeight=True
docexp.DisplayGridLines=True
docexp.FileFormat=DataDynamics.ActiveReports.Export.Xls.FileFormat.Xls95 'Or Xls97Plus
docexp.MinColumnWidth=3
docexp.MinRowHeight=1
docexp.MultiSheet=True
docexp.RemoveVerticalSpace=True
docexp.UseCellMerging=False
docexp.Export(Me.viewer1.Document, Application.StartupPath + "\\x.xls")
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

XlsExport Class
XlsExport Members

Send Feedback