Class
LoadImageEventArgs

Provides additional data for the LoadImageFromUrl event.

Definition

Namespace:Telerik.Windows.Documents.FormatProviders.Html

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

cs-api-definition
public class LoadImageEventArgs : EventArgs

Inheritance: objectEventArgsLoadImageEventArgs

Inherited Members EventArgs.Empty

Constructors

LoadImageEventArgs(ImageInline, string)

Initializes a new instance of the LoadImageEventArgs class.

Declaration

cs-api-definition
public LoadImageEventArgs(ImageInline imageElement, string url)

Parameters

imageElement

ImageInline

The image.

url

string

The URL.

Properties

Handled

Specifies if the image has been already initialized by the user or should be loaded from the specified URL.

Declaration

cs-api-definition
public bool Handled { get; set; }

Property Value

bool

ImageElement

Contains a reference to the ImageInline element which is currently being initialized.

Declaration

cs-api-definition
public ImageInline ImageElement { get; }

Property Value

ImageInline

Url

Specifies the URL from which the image will be loaded if Handled is false.

Declaration

cs-api-definition
public string Url { get; }

Property Value

string