Struct Size
Represents the rows and columns of the terminal emulator screen.
public struct Size
- Inherited Members
Constructors
Size(int, int)
Initializes a new instance of the Size structure.
public Size(int rowCount, int columnCount)
Parameters
rowCountintThe number of rows in the emulator screen.
columnCountintThe number of columns in the emulator screen.
Properties
ColumnCount
Returns the total number of columns in the emulator screen.
public int ColumnCount { get; set; }
Property Value
RowCount
Returns the total number of rows (lines) in the emulator screen.
public int RowCount { get; set; }
Property Value
Methods
ToString()
public override string ToString()