Contains information about the original, the edited image and the editing dialog.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
public class PictureBoxImageEditedEventArgs
Inheritance: objectPictureBoxImageEditedEventArgs
Constructors
Initializes a new instance of the PictureBoxImageEditedEventArgs class.
public PictureBoxImageEditedEventArgs(Image unmodifiedImage, PictureBoxImageEditorDialog dialog)
The unmodified image.
dialogPictureBoxImageEditorDialogThe image editor dialog.
Properties
Gets the image editor dialog.
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.
public bool Handled { get; set; }
Gets the RadImageEditor that is responsible for image editing.
public RadImageEditor ImageEditor { get; }
Gets or sets the modified image that will be applied to the RadPictureBoxElement.
public Bitmap NewImage { get; set; }
Gets the unmodified image that was displayed in the RadPictureBoxElement before the editing dialog was shown.
public Image UnmodifiedImage { get; }