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

Contains information about the original, the edited image and the editing dialog.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class PictureBoxImageEditedEventArgs

Inheritance: objectPictureBoxImageEditedEventArgs

Constructors

Initializes a new instance of the PictureBoxImageEditedEventArgs class.

C#
public PictureBoxImageEditedEventArgs(Image unmodifiedImage, PictureBoxImageEditorDialog dialog)
Parameters:unmodifiedImageImage

The unmodified image.

dialogPictureBoxImageEditorDialog

The image editor dialog.

Properties

Gets the image editor dialog.

C#
public PictureBoxImageEditorDialog Dialog { get; }

If [true] the image will not be changed after the event(the unmodified image will remain) and you should manually update the image applying to RadPictureBoxElement. If [false] the NewImage will be applied to RadPictureBoxElement.

C#
public bool Handled { get; set; }

Gets the RadImageEditor that is responsible for image editing.

C#
public RadImageEditor ImageEditor { get; }

Gets or sets the modified image that will be applied to the RadPictureBoxElement.

C#
public Bitmap NewImage { get; set; }

Gets the unmodified image that was displayed in the RadPictureBoxElement before the editing dialog was shown.

C#
public Image UnmodifiedImage { get; }