Class LoadImageEventArgs
Provides additional data for the LoadImageFromUrl event.
Inheritance
Namespace: Telerik.Windows.Documents.FormatProviders.Html
Assembly: Telerik.Windows.Documents.dll
Syntax
public class LoadImageEventArgs : EventArgs
Constructors
LoadImageEventArgs(ImageInline, String)
Initializes a new instance of the LoadImageEventArgs class.
Declaration
public LoadImageEventArgs(ImageInline imageElement, string url)
Parameters
ImageInline
imageElement
The image. |
System.String
url
The URL. |
Properties
Handled
Specifies if the image has been already initialized by the user or should be loaded from the specified URL.
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
|
ImageElement
Contains a reference to the ImageInline element which is currently being initialized.
Declaration
public ImageInline ImageElement { get; }
Property Value
ImageInline
|
Url
Specifies the URL from which the image will be loaded if Handled is false.
Declaration
public string Url { get; }
Property Value
System.String
|