Interface IEditField
An Oracle text field.
Inherited Members
Namespace: HP.LFT.SDK.Oracle
Assembly: HP.LFT.SDK.dll
Syntax
public interface IEditField : IUiObjectBase, IClickable, ILocationInfoProvider, IEnabledProvider, ITestObject, ITestObjectDescriber
Properties
Caption
The caption of the object.
Declaration
string Caption { get; }
Property Value
| Type | Description |
|---|---|
| string |
ClassPath
The Oracle class hierarchy of the object's Oracle class.
Declaration
string ClassPath { get; }
Property Value
| Type | Description |
|---|---|
| string |
IsEditable
Indicates whether the text field is editable.
Declaration
bool IsEditable { get; }
Property Value
| Type | Description |
|---|---|
| bool |
ObjectDescription
The accessibility description of the object, as specified by the server.
Declaration
string ObjectDescription { get; }
Property Value
| Type | Description |
|---|---|
| string |
ObjectName
The internal name of the object, as supplied by the application server.
Declaration
string ObjectName { get; }
Property Value
| Type | Description |
|---|---|
| string |
Text
The value of the object.
Declaration
string Text { get; }
Property Value
| Type | Description |
|---|---|
| string |
TooltipText
The text displayed in the object's tooltip.
Declaration
string TooltipText { get; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
OpenDialog()
Opens the field's associated dialog box.
Declaration
void OpenDialog()
SetFocus()
Transfers the focus to the field.
Declaration
void SetFocus()
SetText(string)
Enters the specified text into the field.
Declaration
void SetText(string text)
Parameters
| Type | Name | Description |
|---|---|---|
| string | text | The text to enter in the text field. |
SetTextAndValidate(string)
Enters the specified text into the field with validation.
Declaration
void SetTextAndValidate(string text)
Parameters
| Type | Name | Description |
|---|---|---|
| string | text | The text to enter in the text field. |
Validate()
Transfers the focus out of the field.
Declaration
void Validate()