Table of Contents

Interface IField

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

A terminal emulator field that fully supports HLLAPI.

public interface IField : ITestObject, ITestObjectDescriber, IVisibleProvider
Inherited Members
Extension Methods

Properties

AttachedText

Terminal emulator field attached text.

string AttachedText { get; }

Property Value

string

BackgroundColor

Terminal emulator field background color

string BackgroundColor { get; }

Property Value

string

Color

Terminal emulator field text color

string Color { get; }

Property Value

string

Id

Terminal emulator field ID.

int Id { get; }

Property Value

int

IsNumeric

Terminal emulator field numeric property.

bool IsNumeric { get; }

Property Value

bool

IsProtected

Terminal emulator field protected property.

bool IsProtected { get; }

Property Value

bool

Length

Terminal emulator field length.

int Length { get; }

Property Value

int

StartPosition

Terminal emulator field start column and start row property. Represented by the Position object.

Position StartPosition { get; }

Property Value

Position

Text

Terminal emulator field text.

string Text { get; }

Property Value

string

Methods

SetCursor()

Places the cursor in the specified position within the field. The default value for the position in the field is 0.

void SetCursor()

SetCursor(long)

Places the cursor in the specified position within the field.

void SetCursor(long offset)

Parameters

offset long

The position in the field to position the cursor.

SetSecure(string)

Inserts text into a hidden (invisible) field.

void SetSecure(string codedString)

Parameters

codedString string

The coded string to insert into the field.

SetText(string)

Inserts text into an unprotected field. The default value for the position in the field is 0.

void SetText(string text)

Parameters

text string

The string to insert into the field.

SetText(string, long)

Inserts text into an unprotected field.

void SetText(string text, long offset)

Parameters

text string

The string to insert into the field.

offset long

The position of the text in the field.