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