Class
PictureBoxImageLoadedEventArgs

Provides data for the event that occurs when an image has been loaded into a PictureBox control.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public class PictureBoxImageLoadedEventArgs : EventArgs

Inheritance: objectEventArgsPictureBoxImageLoadedEventArgs

Inherited Members EventArgs.Empty

Constructors

PictureBoxImageLoadedEventArgs(ImageKind, LoadImageContext, string)

Initializes a new instance of the PictureBoxImageLoadedEventArgs class.

Declaration

cs-api-definition
public PictureBoxImageLoadedEventArgs(ImageKind imagekind, LoadImageContext loadContext, string filePath = null)

Parameters

imagekind

ImageKind

loadContext

LoadImageContext

filePath

string

Properties

FilePath

Gets the file path from which the image is loaded. This property is valid only when the LoadContext is set to File. Otherwise, it will be null.

Declaration

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

Property Value

string

ImageKind

Gets the image type that was loaded.

Declaration

cs-api-definition
public ImageKind ImageKind { get; }

Property Value

ImageKind

LoadContext

Gets the context source used during the image loading operation.

Declaration

cs-api-definition
public LoadImageContext LoadContext { get; }

Property Value

LoadImageContext