Table of Contents

Class SizeProperty

The size properties of a Terminal Emulator object.

Inheritance
SizeProperty
Implements
ICloneable
Namespace: HP.LFT.SDK.TE
Assembly: HP.LFT.SDK.dll
Syntax
public class SizeProperty : ICloneable

Constructors

SizeProperty()

Initializes a new instance of the SizeProperty class.

Declaration
public SizeProperty()

SizeProperty(Size)

Initializes a new instance of the SizeProperty class with RowCount and ColumnCount values.

Declaration
public SizeProperty(Size size)
Parameters
Type Name Description
Size size

The RowCount and ColumnCount values to initialize the SizeProperty.

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

Clone()

Creates an exact copy of this object.

Declaration
public object Clone()
Returns
Type Description
object

a deep copy of the instance.

GetProperties()

Returns the inner properties of this property.

Declaration
public IDictionary<string, object> GetProperties()
Returns
Type Description
IDictionary<string, object>

Operators

implicit operator SizeProperty(Size)

Implicits cast of Size to SizeProperty.

Declaration
public static implicit operator SizeProperty(Size size)
Parameters
Type Name Description
Size size

The Size instance to be cast to SizeProperty.

Returns
Type Description
SizeProperty
Remarks

This is the same as calling a new SizeProperty(Size).

Implements

ICloneable