New to Telerik UI for WinFormsStart a free 30-day trial

Contains information about the dialog, image editor and the image that will be edited.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class PictureBoxImageEditorOpeningEventArgs : EventArgs

Inheritance: objectEventArgsPictureBoxImageEditorOpeningEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the PictureBoxImageEditorOpeningEventArgs class.

C#
public PictureBoxImageEditorOpeningEventArgs(PictureBoxImageEditorDialog dialog)
Parameters:dialogPictureBoxImageEditorDialog

The image editor dialog.

Properties

Gets or sets a value indicating whether to cancel the image editing operation.

C#
public bool Cancel { get; set; }

Gets the image editor dialog.

C#
public PictureBoxImageEditorDialog Dialog { get; }

Gets or sets the image that is about to be edited.

C#
public Bitmap EditingImage { get; set; }

Gets the RadImageEditor that is responsible for image editing.

C#
public RadImageEditor ImageEditor { get; }