RtfExportSettings
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:
public class RtfExportSettings
Inheritance: objectRtfExportSettings
Constructors
Initializes a new instance of the RtfExportSettings class.
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. ///
public bool ExportImagesInCompatibilityMode { get; set; }
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.
public FieldDisplayMode? FieldResultMode { get; set; }
Methods
Raises the event.
protected virtual void OnImageExporting(ImageExportingEventArgs args)
The ImageExportingEventArgs instance containing the event data.
Events
Occurs when an image is being exported.
public event EventHandler<ImageExportingEventArgs> ImageExporting