Class RtfExportSettings
Provides different settings that are applied while exporting a RadDocument instance to RTF.
Inheritance
Namespace: Telerik.Windows.Documents.FormatProviders.Rtf
Assembly: Telerik.Windows.Documents.dll
Syntax
public class RtfExportSettings : Object
Constructors
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
public bool ExportImagesInCompatibilityMode { get; set; }
Property Value
System.Boolean
|
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
public Nullable<FieldDisplayMode> FieldResultMode { get; set; }
Property Value
System.Nullable<FieldDisplayMode>
|
Methods
OnImageExporting(ImageExportingEventArgs)
Raises the ImageExporting event.
Declaration
protected virtual void OnImageExporting(ImageExportingEventArgs args)
Parameters
ImageExportingEventArgs
args
The ImageExportingEventArgs instance containing the event data. |
Events
ImageExporting
Occurs when an image is being exported.
Declaration
public event EventHandler<ImageExportingEventArgs> ImageExporting
Event Type
System.EventHandler<ImageExportingEventArgs>
|