Class Region
Represents a rectangular region on the console
public record Region : IEquatable<Region>
- Inheritance
-
Region
- Implements
- Inherited Members
Constructors
Region(int, int, int, int)
Represents a rectangular region on the console
public Region(int Left, int Top, int Width, int Height)
Parameters
Properties
Height
public int Height { get; init; }
Property Value
Left
public int Left { get; init; }
Property Value
Top
public int Top { get; init; }
Property Value
Width
public int Width { get; init; }