ClassImageExportingEventArgs
Raised for each image during HTML export, allowing customization of image sources, attributes, and export behavior.
Definition
Namespace:Telerik.Windows.Documents.Flow.FormatProviders.Html
Assembly:Telerik.Windows.Documents.Flow.dll
Syntax:
public class ImageExportingEventArgs : EventArgs
Inheritance: objectEventArgsImageExportingEventArgs
Inherited Members
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
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
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
True if the event is handled. False otherwise.
Image
Gets the document image being exported.
Source
Gets or sets the URI written to the 'src' attribute of the img element.