ClassPictureBoxImageEditedEventArgs
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
PictureBoxImageEditedEventArgs(Image, PictureBoxImageEditorDialog)
Initializes a new instance of the PictureBoxImageEditedEventArgs class.
Declaration
public PictureBoxImageEditedEventArgs(Image unmodifiedImage, PictureBoxImageEditorDialog dialog)
Parameters
unmodifiedImage
The unmodified image.
dialog
The image editor dialog.
Properties
Dialog
Gets the image editor dialog.
Declaration
public PictureBoxImageEditorDialog Dialog { get; }
Property Value
Handled
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.
ImageEditor
Gets the RadImageEditor that is responsible for image editing.
Declaration
public RadImageEditor ImageEditor { get; }
Property Value
NewImage
Gets or sets the modified image that will be applied to the RadPictureBoxElement.
UnmodifiedImage
Gets the unmodified image that was displayed in the RadPictureBoxElement before the editing dialog was shown.