Struct Position
Represents Terminal Emulator coordinates row and column.
public struct Position
- Inherited Members
Constructors
Position(int, int)
Initializes a new instance of the Position structure.
public Position(int row, int column)
Parameters
rowintThe row value of this Position structure.
columnintThe column value of this Position structure.
Properties
Column
Returns the column position of the cursor in the emulator screen.
public int Column { get; set; }
Property Value
Row
Returns the row position of the cursor in the emulator screen.
public int Row { get; set; }
Property Value
Methods
ToString()
public override string ToString()