GrapeCity ActiveReports for .NET 12.0J
OpenXmlStandard プロパティ (XlsExport)
使用例 

Xlsx形式のファイルをエクスポートするときのOpen XMLドキュメントの適合レベルを指定します。
構文
'宣言
 
Public Property OpenXmlStandard As OpenXmlStandard
public OpenXmlStandard OpenXmlStandard {get; set;}
解説
Open XML SDKはxlsx形式のドキュメントを厳密型(Strict)に保存します。xlsx形式のファイルを読み込めないアプリケーションでは、このプロパティを使用して、xlsx形式のファイルを移行型(Transitional)に変換します。
使用例
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);
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)
参照

関連項目

XlsExport クラス
XlsExport メンバ

 

 


Copyright © 2003 GrapeCity inc. All rights reserved.