PowerTools ActiveReports for .NET 9.0J
Export メソッド (PdfExport)
使用例 

指定したドキュメントをPDF形式にエクスポートします。
オーバーロード一覧
オーバーロード解説
Export(PageDocument,String)PDFファイルに指定したページドキュメントをエクスポートします。  
Export(PageDocument,String,String)PDFファイルに指定したページドキュメントをエクスポートします。  
Export(PageDocument,Stream)PDFストリームに指定したページドキュメントをエクスポートします。  
Export(PageDocument,Stream,String)PDFストリームに指定したページドキュメントをエクスポートします。  
Export(SectionDocument,String)指定したドキュメントをPDFファイルにエクスポートします。  
Export(SectionDocument,String,String)指定したドキュメントをPDFファイルにエクスポートします。  
Export(SectionDocument,Stream)指定したドキュメントをPDFストリームにエクスポートします。  
Export(SectionDocument,Stream,String)指定したドキュメントをPDFストリームにエクスポートします。  
使用例
private void btnExport_Click(object sender, System.EventArgs e)
{
    SectionReport1 rpt = new SectionReport1();
    GrapeCity.ActiveReports.Export.Pdf.Section.PdfExport p = new GrapeCity.ActiveReports.Export.Pdf.Section.PdfExport();
    rpt.Run();
    this.viewer1.Document = rpt.Document;
    p.Export(rpt.Document, Application.StartupPath + "\\p.pdf");
}
Private Sub btnExport_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    Dim rpt As New SectionReport1
    Dim p As New GrapeCity.ActiveReports.Export.Pdf.Section.PdfExport
    rpt.Run()
    Me.Viewer1.Document = rpt.Document
    p.Export(rpt.Document, Application.StartupPath & "\p.pdf")
End Sub
参照

関連項目

PdfExport クラス
PdfExport メンバ

 

 


©2003-2015 GrapeCity inc. All rights reserved.