Class LoadImageEventArgs
Provides additional data for the Load
Inheritance
Inherited Members
Namespace: Telerik.WinForms.Documents.FormatProviders.Html
Assembly: Telerik.WinControls.RichTextEditor.dll
Syntax
public class LoadImageEventArgs : EventArgs
Constructors
LoadImageEventArgs(ImageInline, String)
Initializes a new instance of the Load
Declaration
public LoadImageEventArgs(ImageInline imageElement, string url)
Parameters
Image The image. |
System. 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.
|
ImageElement
Contains a reference to the Image
Declaration
public ImageInline ImageElement { get; }
Property Value
Url
Specifies the URL from which the image will be loaded if Handled is false.
Declaration
public string Url { get; }
Property Value
System.
|