リッチテキスト形式(RTF)は、ワードパッドのネイティブ形式で、Microsoft Wordでも開くことができます。このエクスポート形式を使用した場合、ビューワの表示結果とは異なってエクスポートされます。
プロジェクトに次のパッケージへの参照を追加し、コード上でRTFExportオブジェクトを使用してください。
レポートの種類 | パッケージ名 |
---|---|
セクションレポート | MESCIUS.ActiveReports.Export.Word.ja |
Visual Basicコード |
コードのコピー
|
---|---|
Dim rpt As New SectionReport1 rpt.Run() Dim RtfExport1 As New GrapeCity.ActiveReports.Export.Word.Section.RtfExport |
C#コード |
コードのコピー
|
---|---|
GrapeCity.ActiveReports.SectionReport rpt = new GrapeCity.ActiveReports.SectionReport(); rpt.Run(); GrapeCity.ActiveReports.Export.Word.Section.RtfExport RtfExport1 = new GrapeCity.ActiveReports.Export.Word.Section.RtfExport(); |