New to Telerik Document ProcessingStart a free 30-day trial

Settings

Updated on Jul 15, 2026

RtfFormatProvider allows you to import RTF documents and export a RadFlowDocument to RTF. The import/export settings provide modification options. This article outlines the available settings.

Export Settings

You can specify the following export settings:

ExportImagesInCompatibilityMode

Specifies whether the provider exports images in compatibility mode. This option is useful when earlier RTF readers open the exported document.

The default value for this setting is false.

The following code demonstrates how to create and specify particular export settings for RtfFormatProvider.

Example 1: Create RtfExportSettings and enable image export in compatibility mode

C#
RtfFormatProvider rtf_provider = new RtfFormatProvider();
RtfExportSettings exportSettings = new RtfExportSettings();
exportSettings.ExportImagesInCompatibilityMode = true;
rtf_provider.ExportSettings = exportSettings;