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