Interface ITableCell
A single cell in an Oracle Table.
Namespace: HP.LFT.SDK.Oracle
Assembly: HP.LFT.SDK.dll
Syntax
public interface ITableCell
Properties
IsEditable
Indicates whether the cell is editable.
Declaration
bool IsEditable { get; }
Property Value
| Type | Description |
|---|---|
| bool |
Value
The content of the cell.
Declaration
object Value { get; }
Property Value
| Type | Description |
|---|---|
| object |
Methods
AsTestObject<T>()
Returns the test object representing a specified cell.
Declaration
T AsTestObject<T>() where T : class, IUiObjectBase
Returns
| Type | Description |
|---|---|
| T | A test object representing the current test object inside the cell. |
Type Parameters
| Name | Description |
|---|---|
| T | The test object interface type to find. To avoid limiting to a specific test object type, use IUiObjectBase. |
OpenDialog()
Opens a specified cell's associated dialog box.
Declaration
void OpenDialog()
SetFocus()
Transfers focus to a specified cell.
Declaration
void SetFocus()
SetValue(object)
Enters a value in a specific cell.
Declaration
void SetValue(object value)
Parameters
| Type | Name | Description |
|---|---|---|
| object | value | The new value. |
SetValueAndValidate(object)
Enters a value in a specific cell with validation.
Declaration
void SetValueAndValidate(object value)
Parameters
| Type | Name | Description |
|---|---|---|
| object | value | The new value. |