Class Bounds
The bounds are the position (x, y) and dimension (width, height) of an object. As such the Bounds type extends both Point and Dimension.
public class Bounds
- Inheritance
-
Bounds
- Inherited Members
Properties
Height
the height of an element.
public double Height { get; init; }
Property Value
Width
The width of an element.
public double Width { get; init; }
Property Value
X
The abscissa of the point.
public double X { get; init; }
Property Value
Y
The ordinate of the point.
public double Y { get; init; }