Class SelectionChangeEventArgs
Provides the information about the OnSelectionResizeStart and OnSelectionResizeEnd event callbacks.
Inheritance
Namespace: Syncfusion.Blazor.ImageEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class SelectionChangeEventArgs : Object
Constructors
SelectionChangeEventArgs()
Declaration
public SelectionChangeEventArgs()
Properties
Action
Gets the name of the action to be performed.
Declaration
public string Action { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string value that represents the type of action done with selection. |
Remarks
The possible actions include insert, resize selection.
Cancel
Gets or sets a value indicating whether the selection changing action should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | Optional
|
CurrentSelectionSettings
Gets or sets the selection settings after inserting and resizing the selection.
Declaration
public CropSelectionSettings CurrentSelectionSettings { get; set; }
Property Value
Type | Description |
---|---|
CropSelectionSettings | A CropSelectionSettings object that represents the all the details of the selection including its type, position, width, and height. |
PreviousSelectionSettings
Gets the selection settings before inserting and resizing the selection.
Declaration
public CropSelectionSettings PreviousSelectionSettings { get; set; }
Property Value
Type | Description |
---|---|
CropSelectionSettings | A CropSelectionSettings object that represents the all the details of the selection including its type, position, width, and height. |