Class ImageExportingEventArgs
Raised for each image during HTML export, allowing customization of image sources, attributes, and export behavior.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Flow.FormatProviders.Html
Assembly: Telerik.Windows.Documents.Flow.dll
Syntax
public class ImageExportingEventArgs : EventArgs
Properties
AlternativeText
Gets or sets the text written to the 'alt' attribute of the img element for accessibility.
Declaration
public string AlternativeText { get; set; }
Property Value
|
System.String
The alternative text. |
ExportSize
Gets or sets whether 'width' and 'height' attributes are written to the img element (default is true).
Declaration
public bool ExportSize { get; set; }
Property Value
|
System.Boolean
The value indicating whether the image size should be exported. |
Handled
Gets or sets whether the event is handled by custom logic, preventing default image export behavior.
Declaration
public bool Handled { get; set; }
Property Value
|
System.Boolean
True if the event is handled. False otherwise. |
Image
Gets the document image being exported.
Declaration
public Image Image { get; }
Property Value
|
Image
The image. |
Source
Gets or sets the URI written to the 'src' attribute of the img element.
Declaration
public string Source { get; set; }
Property Value
|
System.String
The source. |
Title
Gets or sets the text written to the 'title' attribute of the img element.
Declaration
public string Title { get; set; }
Property Value
|
System.String
The title. |