ITableCell Interface

A single cell in an Oracle Table.

C# Syntax

public interface ITableCell 
Public Properties
 NameDescription
PropertyValue

The content of the cell.

C# Syntax  

object Value {get;}
PropertyIsEditable

Indicates whether the field is editable.

bool IsEditable {get;}
Top

Public Methods

 NameDescription
MethodAsTestObject< 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

MethodOpenDialog

Opens a specified cell's associated dialog box.

C# Syntax

void OpenDialog ()
MethodSetFocus

Transfers focus to a specified cell.

C# Syntax

void SetFocus ()
MethodSetValue

Enters a value in a specific cell.

C# Syntax

void SetValue (object value)

Parameters

value - The new value.

MethodSetValueAndValidate

Enters a value in a specific cell with validation.

C# Syntax

void SetValueAndValidate (object value)

Parameters

value - The new value.