PowerTools ActiveReports for .NET 11.0J
Export(SectionDocument,String) メソッド
使用例 

エクスポートするActiveReportsのDocumentオブジェクト。
TIFFファイルを保存するファイル名とパス。
指定したドキュメントをTIFFファイルにエクスポートします。
構文
'宣言
 
Public Overloads Sub Export( _
   ByVal document As SectionDocument, _
   ByVal filePath As String _
) 
public void Export( 
   SectionDocument document,
   string filePath
)

パラメータ

document
エクスポートするActiveReportsのDocumentオブジェクト。
filePath
TIFFファイルを保存するファイル名とパス。
使用例
Dim rpt As New SectionReport1()
rpt.Run()
Me.tiffExport1.CompressionScheme = GrapeCity.ActiveReports.Export.Image.Tiff.Section.CompressionScheme.None
'色をエクスポートするためにCompressionSchemeをNoneに設定します。
Me.tiffExport1.Export(rpt.Document,Application.StartupPath & "\t.tiff")
SectionReport1 rpt = new SectionReport1();
rpt.Run();
this.tiffExport1.CompressionScheme = GrapeCity.ActiveReports.Export.Image.Tiff.Section.CompressionScheme.None;
//色をエクスポートするためにCompressionSchemeをNoneに設定します。
this.tiffExport1.Export(rpt.Document, Application.StartupPath + "\\t.tiff");
参照

関連項目

TiffExport クラス
TiffExport メンバ
オーバーロード一覧

 

 


©2003-2017 GrapeCity inc. All rights reserved.