パラメータ
- document
- エクスポートするActiveReportsのDocumentオブジェクト。
- filePath
- RTFファイルを保存するファイル名とパス。
- pageRange
- エクスポートするページを、カンマで区切って指定するか、2-8のように開始ページと終了ページを指定します。
private void btnExport_Click(object sender, System.EventArgs e) { rptGrapeCity rpt = new rptGrapeCity(); GrapeCity.ActiveReports.Export.Rtf.RtfExport r = new GrapeCity.ActiveReports.Export.Rtf.RtfExport(); rpt.Run(); this.Viewer1.Document = rpt.Document; r.Export(rpt.Document, Application.StartupPath + "\\r.rtf", "1-3"); }
Private Sub btnExport_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Dim rpt As New SectionReport1 Dim r As New GrapeCity.ActiveReports.Export.Word.Section.RtfExport rpt.Run() Me.Viewer1.Document = rpt.Document r.Export(rpt.Document, Application.StartupPath & "\r.rtf", "1-3") End Sub