wpf-118864-controls-and-libraries-printing-exporting-concepts-exporting-export-to-rtf.md
This document describes specifics of exporting a document to the RTF format (Rich Text Format).
The RtfExportOptions class provides options which define how to export the document to an RTF file. You can access these options using the report’s ExportOptions.Rtf property.
The RtfExportOptions.ExportMode property specifies how a document is exported to RTF.
Note
Not all programs that can be used to view and edit RTF files can correctly process the resulting RTF file. For instance, Microsoft® Word® displays these files correctly, while WordPad ® does not. Note that this is not due to any problem in our product - WordPad does not fully support the RTF standard.
The following table lists RTF-specific options and indicates which export modes support these options:
|
Option
|
Single File
(Continuous)
|
Single File
Page-by-Page
|
Description
| | --- | --- | --- | --- | |
FormattedTextExportOptions.ExportWatermarks
|
|
|
Specifies whether to include the existing text and image watermarks in a RTF file.
| |
FormattedTextExportOptions.PageRange
|
|
|
Specifies the range of pages which should be exported to RTF.
| |
FormattedTextExportOptions.KeepRowHeight
|
|
|
Specifies whether the height of table rows in a resulting document should have fixed values.
| |
FormattedTextExportOptions.EmptyFirstPageHeaderFooter
|
|
|
Defines whether the header and footer contents should be displayed on the first page of the final document.
| |
FormattedTextExportOptions.ExportPageBreaks
|
|
|
Specifies whether page breaks should be included in the resulting RTF file.
|
Take into account the following specifics, when exporting a document in the RtfExportMode.SingleFile mode:
Composite report documents created from multiple merged documents cannot be exported to the RTF format in the RtfExportMode.SingleFile (continuous) mode.
Only report controls that do not intersect with each other can be correctly exported to RTF. Otherwise, the resulting file may have a broken layout.
When exporting a document to RTF in a table-like layout, the actual height of table rows in the resulting file can be adjusted by the Microsoft® Word® rendering mechanism automatically to fit the content. This can lead to increasing the page layout and produce a result that differs from the initial document in Print Preview. To avoid this and make the row height unaffected by adding new content, set the FormattedTextExportOptions.KeepRowHeight property to true.
To locate controls’ content in native header and footer sections of the resulting RTF file, place these controls in the TopMarginBand or BottomMarginBand (not in the page footer and header).
Vector images (e.g., pictures, charts or bar codes) are always rasterized on export to RTF. You can use the PageByPageExportOptionsBase.RasterizationResolution property to define the image resolution.