Table of Contents

Struct Size

Represents the rows and columns of the terminal emulator screen.

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

Constructors

Size(int, int)

Initializes a new instance of the Size structure.

Declaration
public Size(int rowCount, int columnCount)
Parameters
Type Name Description
int rowCount

The number of rows in the emulator screen.

int columnCount

The number of columns in the emulator screen.

Properties

ColumnCount

Returns the total number of columns in the emulator screen.

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

RowCount

Returns the total number of rows (lines) in the emulator screen.

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

Methods

ToString()

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