Class ImageExportingEventArgs
Provides additional data for the Image
Inheritance
Inherited Members
Namespace: Telerik.WinForms.Documents.FormatProviders.Rtf
Assembly: Telerik.WinControls.RichTextEditor.dll
Syntax
public class ImageExportingEventArgs : EventArgs
Constructors
ImageExportingEventArgs(Byte[], String)
Initializes a new instance of the Image
Declaration
public ImageExportingEventArgs(byte[] imageBytes, string extension)
Parameters
System. The image bytes. |
System. The image extension. |
Properties
Extension
Gets or sets the image extension.
Declaration
public string Extension { get; set; }
Property Value
System. The extension. |
ImageBytes
Gets or sets the image bytes.
Declaration
public byte[] ImageBytes { get; set; }
Property Value
System. 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.
|