Class Bounds
Defines the properties of the layout bounds
Inheritance
System.Object
Bounds
Implements
System.IEquatable<Bounds>
Namespace: Syncfusion.Blazor.Diagrams
Assembly: Syncfusion.Blazor.dll
Syntax
public class Bounds : Object, IEquatable<Bounds>
Constructors
Bounds()
Declaration
public Bounds()
Properties
Bottom
returns the bottom position, where layout is rendered
Declaration
public double Bottom { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
CanMoveBy
returns how much distance layout is moved
Declaration
public double CanMoveBy { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Right
returns the right position, where layout is rendered
Declaration
public double Right { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
X
returns the left position, where the layout is rendered
Declaration
public double X { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Y
returns the top position, where layout is rendered
Declaration
public double Y { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Equals(Bounds)
Indicates whether the Bounds object is equal to another object of the same type
Declaration
public bool Equals(Bounds bounds)
Parameters
Type | Name | Description |
---|---|---|
Bounds | bounds | Defines the properties of the layout bounds |
Returns
Type | Description |
---|---|
System.Boolean | Returns the properties of the layout bounds |
Implements
System.IEquatable<>