Table of Contents

Struct Position

Represents Terminal Emulator coordinates row and column.

Namespace: HP.LFT.SDK.TE
Assembly: HP.LFT.SDK.dll
Syntax
public struct Position

Constructors

Position(int, int)

Initializes a new instance of the Position structure.

Declaration
public Position(int row, int column)
Parameters
Type Name Description
int row

The row value of this Position structure.

int column

The column value of this Position structure.

Properties

Column

Returns the column position of the cursor in the emulator screen.

Declaration
public int Column { get; set; }
Property Value
Type Description
int

Row

Returns the row position of the cursor in the emulator screen.

Declaration
public int Row { get; set; }
Property Value
Type Description
int

Methods

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
ValueType.ToString()