Class ZoomEventArgs
Provides the information about the Zooming event callback.
Inheritance
Namespace: Syncfusion.Blazor.ImageEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class ZoomEventArgs : Object
Constructors
ZoomEventArgs()
Declaration
public ZoomEventArgs()
Properties
Cancel
Gets or sets a value indicating whether the zooming action should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
CurrentZoomFactor
Gets the current zoom factor applied to the loaded image in the SfImageEditor.
Declaration
public double CurrentZoomFactor { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double value representing the current zoom factor of the image. |
PreviousZoomFactor
Gets the previous zoom factor that was applied before the current zoom action in the SfImageEditor.
Declaration
public double PreviousZoomFactor { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double value representing the previous zoom factor of the image. |
ZoomPoint
Gets the x and y coordinates of the point where the zooming action was performed in the SfImageEditor.
Declaration
public ImageEditorPoint ZoomPoint { get; set; }
Property Value
Type | Description |
---|---|
ImageEditorPoint | An ImageEditorPoint object representing the current x and y coordinates of the zoom action. |
ZoomTrigger
Gets the type of zooming performed in the SfImageEditor.
Declaration
public ZoomTrigger ZoomTrigger { get; set; }
Property Value
Type | Description |
---|---|
ZoomTrigger | A flagged Enum ZoomTrigger that returns the type of zooming performed. |