Class ImageExportingEventArgs
Provides data for ImageExporting event.
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 value which will be set to the 'alt' attribute of the 'image' element.
Declaration
public string AlternativeText { get; set; }
Property Value
System.String
The alternative text. |
ExportSize
Gets or sets the value which indicates whether the 'width' and 'height' attributes of an 'image' element should be exported.
The default value is true.
Declaration
public bool ExportSize { get; set; }
Property Value
System.Boolean
The value indicating whether the image size should be exported. |
Handled
Indicates if the event is handled.
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
True if the event is handled. False otherwise. |
Image
Gets the image that will be exported.
Declaration
public Image Image { get; }
Property Value
Image
The image. |
Source
Gets or sets the value which will be set to the 'src' attribute of the 'image' element.
Declaration
public string Source { get; set; }
Property Value
System.String
The source. |
Title
Gets or sets the 'title' attribute of the 'image' element.
Declaration
public string Title { get; set; }
Property Value
System.String
The title. |