Visual Basic (Declaration) | |
---|---|
Public Property OpenXmlStandard As OpenXmlStandard |
C# | |
---|---|
public OpenXmlStandard OpenXmlStandard {get; set;} |
The Open XML SDK saves the xlsx document in Strict standard. Use this property to convert the xlsx file to the Transitional standard for applications that cannot read the xlsx file.
C# | Copy Code |
---|---|
SectionReport1 rpt = new SectionReport1(); GrapeCity.ActiveReports.Document.SectionDocument doc = new GrapeCity.ActiveReports.Document.SectionDocument(); doc.Pages.Add(new GrapeCity.ActiveReports.Document.Section.Page()); XlsExport export = new XlsExport(); export.FileFormat = GrapeCity.ActiveReports.Export.Excel.Section.FileFormat.Xlsx; export.OpenXmlStandard = GrapeCity.ActiveReports.Export.Excel.Section.OpenXmlStandard.Transitional; Stream stream = new MemoryStream(); export.Export(rpt.Document, stream); |
VB.NET | Copy Code |
---|---|
Dim rpt As New SectionReport1() Dim doc As New GrapeCity.ActiveReports.Document.SectionDocument() doc.Pages.Add(New GrapeCity.ActiveReports.Document.Section.Page()) Dim export As New XlsExport() export.FileFormat = GrapeCity.ActiveReports.Export.Excel.Section.FileFormat.Xlsx export.OpenXmlStandard = GrapeCity.ActiveReports.Export.Excel.Section.OpenXmlStandard.Transitional Dim stream As Stream = New MemoryStream() export.Export(rpt.Document, stream) |