Class ImageResizedEventArgs
Provides information about the ImageResized event callback.
Inheritance
System.Object
ImageResizedEventArgs
Namespace: Syncfusion.Blazor.ImageEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class ImageResizedEventArgs : Object
Constructors
ImageResizedEventArgs()
Declaration
public ImageResizedEventArgs()
Properties
height
Gets the height of the image after a resizing operation has been performed.
Declaration
public int height { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | A double value representing the resulting height of the image after resizing. |
IsAspectRatio
Gets a value indicating whether the resizing action should maintain the aspect ratio.
Declaration
public bool IsAspectRatio { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Width
Gets the width of the image after a resizing operation has been performed.
Declaration
public int Width { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | A double value representing the resulting width of the image after resizing. |