Table of Contents

Interface ITableCell

Namespace
HP.LFT.SDK.Oracle
Assembly
HP.LFT.SDK.dll

A single cell in an Oracle Table.

public interface ITableCell

Properties

IsEditable

Indicates whether the cell is editable.

bool IsEditable { get; }

Property Value

bool

Value

The content of the cell.

object Value { get; }

Property Value

object

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

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.

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

value object

The new value.

SetValueAndValidate(object)

Enters a value in a specific cell with validation.

void SetValueAndValidate(object value)

Parameters

value object

The new value.