Table of Contents

Class PositionProperty

Namespace
HP.LFT.SDK.TE
Assembly
HP.LFT.SDK.dll

The position properties of a Terminal Emulator object.

public class PositionProperty : ICloneable
Inheritance
PositionProperty
Implements
Inherited Members

Constructors

PositionProperty()

Initializes a new instance of the PositionProperty class.

public PositionProperty()

PositionProperty(Position)

Initializes a new instance of the PositionProperty class with Row and Column values.

public PositionProperty(Position position)

Parameters

position Position

The Row and Start values to initialize the PositionProperty.

Properties

Column

Returns the column attribute of the test object position.

public int? Column { get; set; }

Property Value

int?

Row

Returns the row attribute of the test object position.

public int? Row { get; set; }

Property Value

int?

Methods

Clone()

Creates an exact copy of this object.

public object Clone()

Returns

object

a deep copy of the instance.

GetProperties()

Returns the inner properties of this property.

public IDictionary<string, object> GetProperties()

Returns

IDictionary<string, object>

Operators

implicit operator PositionProperty(Position)

Implicits casting of Position to PositionProperty.

public static implicit operator PositionProperty(Position position)

Parameters

position Position

The Position instance to be cast to PositionProperty.

Returns

PositionProperty

Remarks

This is the same as calling a new PositionProperty(Position).