Struct Area
Represents Terminal Emulator coordinates Top, Left, Bottom, Right.
public struct Area
- Inherited Members
Constructors
Area(Position, Position)
Initializes a new instance of the Area structure.
public Area(Position topLeft, Position bottomRight)
Parameters
topLeftPositionAssigns values to the Top and Left fields.
bottomRightPositionAssigns values to the Bottom and Right fields.
Area(int, int, int, int)
Initializes a new instance of the Area structure.
public Area(int top, int left, int bottom, int right)
Parameters
topintThe top edge of this Area structure.
leftintThe left edge of this Area structure.
bottomintThe bottom edge of this Area structure.
rightintThe right edge of this Area structure.
Fields
Bottom
Bottom position of the rectangle.
public int Bottom
Field Value
Left
Left position of the rectangle.
public int Left
Field Value
Right
Right position of the rectangle.
public int Right
Field Value
Top
Top position of the rectangle.
public int Top