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
Gets or sets the text written to the 'alt' attribute of the img element for accessibility.
public string AlternativeText { get; set; }
The alternative text.
Gets or sets whether 'width' and 'height' attributes are written to the img element (default is true).
public bool ExportSize { get; set; }
The value indicating whether the image size should be exported.
Gets or sets whether the event is handled by custom logic, preventing default image export behavior.
public bool Handled { get; set; }
True if the event is handled. False otherwise.
Gets the document image being exported.
public Image Image { get; }
The image.
Gets or sets the URI written to the 'src' attribute of the img element.
public string Source { get; set; }
The source.