Class
RtfExportSettings

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

Definition

Namespace:Telerik.Windows.Documents.FormatProviders.Rtf

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

cs-api-definition
public class RtfExportSettings

Inheritance: objectRtfExportSettings

Constructors

RtfExportSettings()

Initializes a new instance of the RtfExportSettings class.

Declaration

cs-api-definition
public RtfExportSettings()

Properties

ExportImagesInCompatibilityMode

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. ///

Declaration

cs-api-definition
public bool ExportImagesInCompatibilityMode { get; set; }

Property Value

bool

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

FieldResultMode

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.

Declaration

cs-api-definition
public FieldDisplayMode? FieldResultMode { get; set; }

Property Value

FieldDisplayMode?

Methods

OnImageExporting(ImageExportingEventArgs)

Raises the event.

Declaration

cs-api-definition
protected virtual void OnImageExporting(ImageExportingEventArgs args)

Parameters

args

ImageExportingEventArgs

The ImageExportingEventArgs instance containing the event data.

Events

ImageExporting

Occurs when an image is being exported.

Declaration

cs-api-definition
public event EventHandler<ImageExportingEventArgs> ImageExporting

Event Value

EventHandler<ImageExportingEventArgs>