Class PictureBoxImageEditorOpeningEventArgs
Contains information about the dialog, image editor and the image that will be edited.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class PictureBoxImageEditorOpeningEventArgs : EventArgs
Constructors
PictureBoxImageEditorOpeningEventArgs(PictureBoxImageEditorDialog)
Initializes a new instance of the PictureBoxImageEditorOpeningEventArgs class.
Declaration
public PictureBoxImageEditorOpeningEventArgs(PictureBoxImageEditorDialog dialog)
Parameters
PictureBoxImageEditorDialog
dialog
The image editor dialog. |
Properties
Cancel
Gets or sets a value indicating whether to cancel the image editing operation.
Declaration
public bool Cancel { get; set; }
Property Value
System.Boolean
|
Dialog
Gets the image editor dialog.
Declaration
public PictureBoxImageEditorDialog Dialog { get; }
Property Value
PictureBoxImageEditorDialog
|
EditingImage
Gets or sets the image that is about to be edited.
Declaration
public Bitmap EditingImage { get; set; }
Property Value
System.Drawing.Bitmap
|
ImageEditor
Gets the RadImageEditor that is responsible for image editing.
Declaration
public RadImageEditor ImageEditor { get; }
Property Value
RadImageEditor
|