Class ImageDimension
Represents the dimension of an image in the SfImageEditor.
Inheritance
System.Object
ImageDimension
Namespace: Syncfusion.Blazor.ImageEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class ImageDimension : Object
Remarks
The GetImageDimensionAsync() method is used to get the image as "Dimension".
Constructors
ImageDimension()
Declaration
public ImageDimension()
Properties
Height
Gets or sets the height of an image in the SfImageEditor.
Declaration
public double Height { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double value that specifies the height of an image. |
Width
Gets or sets the width of an image in the SfImageEditor.
Declaration
public double Width { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double value that specifies the width of an image. |
X
Gets or sets the x coordinate of an image in the SfImageEditor.
Declaration
public Nullable<double> X { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> | A double value that specifies the x-coordinates. |
Y
Gets or sets the y coordinate of an image in the SfImageEditor.
Declaration
public Nullable<double> Y { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> | A double value that specifies the y-coordinates. |