Interface ITableCell
A single cell in an Oracle Table.
public interface ITableCell
Properties
IsEditable
Indicates whether the cell is editable.
bool IsEditable { get; }
Property Value
Value
The content of the cell.
object Value { get; }
Property Value
Methods
AsTestObject<T>()
Returns the test object representing a specified cell.
T AsTestObject<T>() where T : class, IUiObjectBase
Returns
- T
A test object representing the current test object inside the cell.
Type Parameters
TThe 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.
void OpenDialog()
SetFocus()
Transfers focus to a specified cell.
void SetFocus()
SetValue(object)
Enters a value in a specific cell.
void SetValue(object value)
Parameters
valueobjectThe new value.
SetValueAndValidate(object)
Enters a value in a specific cell with validation.
void SetValueAndValidate(object value)
Parameters
valueobjectThe new value.