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