Struct Dimension
The Dimension of an object is composed of its width and height.
public readonly record struct Dimension : IEquatable<Dimension>
- Implements
- Inherited Members
Constructors
Dimension(double, double)
The Dimension of an object is composed of its width and height.
public Dimension(double Width, double Height)
Parameters
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; }