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 Picture
Declaration
public PictureBoxImageEditedEventArgs(Image unmodifiedImage, PictureBoxImageEditorDialog dialog)
Parameters
System. The unmodified image. |
Picture 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 Rad
Declaration
public bool Handled { get; set; }
Property Value
System.
|
ImageEditor
Gets the Rad
Declaration
public RadImageEditor ImageEditor { get; }
Property Value
NewImage
Gets or sets the modified image that will be applied to the Rad
Declaration
public Bitmap NewImage { get; set; }
Property Value
System.
|
UnmodifiedImage
Gets the unmodified image that was displayed in the Rad
Declaration
public Image UnmodifiedImage { get; }
Property Value
System.
|