New to Telerik UI for WinFormsStart a free 30-day trial

Provides additional data for the LoadImageFromUrl event.

Definition

Namespace:Telerik.WinForms.Documents.FormatProviders.Html

Assembly:Telerik.WinControls.RichTextEditor.dll

Syntax:

C#
public class LoadImageEventArgs : EventArgs

Inheritance: objectEventArgsLoadImageEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the LoadImageEventArgs class.

C#
public LoadImageEventArgs(ImageInline imageElement, string url)
Parameters:imageElementImageInline

The image.

urlstring

The URL.

Properties

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

C#
public bool Handled { get; set; }

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

C#
public ImageInline ImageElement { get; }

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

C#
public string Url { get; }