Table of Contents

Interface IEditField

Namespace
HP.LFT.SDK.Oracle
Assembly
HP.LFT.SDK.dll

An Oracle text field.

public interface IEditField : IUiObjectBase, IClickable, ILocationInfoProvider, IEnabledProvider, ITestObject, ITestObjectDescriber
Inherited Members
Extension Methods

Properties

Caption

The caption of the object.

string Caption { get; }

Property Value

string

ClassPath

The Oracle class hierarchy of the object's Oracle class.

string ClassPath { get; }

Property Value

string

IsEditable

Indicates whether the text field is editable.

bool IsEditable { get; }

Property Value

bool

ObjectDescription

The accessibility description of the object, as specified by the server.

string ObjectDescription { get; }

Property Value

string

ObjectName

The internal name of the object, as supplied by the application server.

string ObjectName { get; }

Property Value

string

Text

The value of the object.

string Text { get; }

Property Value

string

TooltipText

The text displayed in the object's tooltip.

string TooltipText { get; }

Property Value

string

Methods

OpenDialog()

Opens the field's associated dialog box.

void OpenDialog()

SetFocus()

Transfers the focus to the field.

void SetFocus()

SetText(string)

Enters the specified text into the field.

void SetText(string text)

Parameters

text string

The text to enter in the text field.

SetTextAndValidate(string)

Enters the specified text into the field with validation.

void SetTextAndValidate(string text)

Parameters

text string

The text to enter in the text field.

Validate()

Transfers the focus out of the field.

void Validate()