GrapeCity.ActiveReports.Export.Image.v12 アセンブリ > GrapeCity.ActiveReports.Export.Image.Tiff.Section 名前空間 > TiffExport クラス > Export メソッド : Export(SectionDocument,String) メソッド |
'宣言 Public Overloads Sub Export( _ ByVal document As SectionDocument, _ ByVal filePath As String _ )
public void Export( SectionDocument document, string filePath )
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");