Class FlipEventArgs
Provides the information about the Flipping event callback.
Inheritance
System.Object
FlipEventArgs
Namespace: Syncfusion.Blazor.ImageEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class FlipEventArgs : Object
Constructors
FlipEventArgs()
Declaration
public FlipEventArgs()
Properties
Cancel
Gets or sets a value indicating whether the flipping action should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Direction
Gets the value indicating the direction to be flipped of an image.
Declaration
public ImageEditorDirection Direction { get; set; }
Property Value
Type | Description |
---|---|
ImageEditorDirection | An enumeration value of ImageEditorDirection. It is set to Horizontal if the flipping is horizontal; otherwise, it is set to Vertical. |
PreviousDirection
Gets the value indicating the current direction of an image.
Declaration
public ImageEditorDirection PreviousDirection { get; set; }
Property Value
Type | Description |
---|---|
ImageEditorDirection | An enumeration value of ImageEditorDirection. It is set to Horizontal if the flipping is horizontal; otherwise, it is set to Vertical. |