New to Telerik UI for WinFormsStart a free 30-day trial

Provides different settings that are applied while exporting a RadDocument instance to RTF.

Definition

Namespace:Telerik.WinForms.Documents.FormatProviders.Rtf

Assembly:Telerik.WinControls.RichTextEditor.dll

Syntax:

C#
public class RtfExportSettings

Inheritance: objectRtfExportSettings

Constructors

Initializes a new instance of the RtfExportSettings class.

C#
public RtfExportSettings()

Properties

Gets or sets a value indicating whether the images in the document should be exported in compatibility group. If this property is set to true, the images are wrapped in nonshppict RTF tag. ///

C#
public bool ExportImagesInCompatibilityMode { get; set; }
Property Value:

true if images should be exported in compatibility mode; otherwise, false.

Gets or sets the display mode which will be applied to all fields in the exported document.

When the value is null, fields' display mode is not changed. This can provide a better performance and lower memory usage while exporting.

C#
public FieldDisplayMode? FieldResultMode { get; set; }

Methods

Raises the event.

C#
protected virtual void OnImageExporting(ImageExportingEventArgs args)
Parameters:argsImageExportingEventArgs

The ImageExportingEventArgs instance containing the event data.

Events

Occurs when an image is being exported.

C#
public event EventHandler<ImageExportingEventArgs> ImageExporting