Class ImageExportingEventArgs
Provides additional data for the ImageExporting event.
Inheritance
Namespace: Telerik.Windows.Documents.FormatProviders.Rtf
Assembly: Telerik.Windows.Documents.dll
Syntax
public class ImageExportingEventArgs : EventArgs
Constructors
ImageExportingEventArgs(Byte[], String)
Initializes a new instance of the ImageExportingEventArgs class.
Declaration
public ImageExportingEventArgs(byte[] imageBytes, string extension)
Parameters
System.Byte[]
imageBytes
The image bytes. |
System.String
extension
The image extension. |
Properties
Extension
Gets or sets the image extension.
Declaration
public string Extension { get; set; }
Property Value
System.String
The extension. |
ImageBytes
Gets or sets the image bytes.
Declaration
public byte[] ImageBytes { get; set; }
Property Value
System.Byte[]
The image bytes. |
IsInCompatibilityGroup
Gets or sets a value indicating whether this instance should be exported in compatibility group. If this property is set to true, the image is wrapped in nonshppict RTF tag.
Declaration
public bool IsInCompatibilityGroup { get; set; }
Property Value
System.Boolean
|