GrapeCity.ActiveReports.Export.Excel.v9 Assembly > GrapeCity.ActiveReports.Export.Excel.Section Namespace > XlsExport Class : UseCellMerging Property |
'Declaration Public Property UseCellMerging As System.Boolean
public System.bool UseCellMerging {get; set;}
Dim docexp As New GrapeCity.ActiveReports.Export.Excel.Section.XlsExport() docexp.AutoRowHeight=True docexp.DisplayGridLines=True docexp.FileFormat=GrapeCity.ActiveReports.Export.Excel.Section.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")
GrapeCity.ActiveReports.Export.Excel.Section.XlsExport docexp = new GrapeCity.ActiveReports.Export.Excel.Section.XlsExport(); docexp.AutoRowHeight = true; docexp.DisplayGridLines = true; docexp.FileFormat = GrapeCity.ActiveReports.Export.Excel.Section.FileFormat.Xls95; //or Xls97Plus or Xlsx docexp.MinColumnWidth = 3; docexp.MinRowHeight = 1; docexp.MultiSheet = true; docexp.RemoveVerticalSpace = true; docexp.UseCellMerging = false; docexp.Export(this.viewer1.Document, Application.StartupPath + "\\x.xls");
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