Table of Contents

Interface ITableCell

Namespace
HP.LFT.SDK.Java
Assembly
HP.LFT.SDK.dll

A single cell in a Java Table.

public interface ITableCell

Properties

ColumnHeader

The column header name of this cell.

string ColumnHeader { get; }

Property Value

string

Value

The content of this cell.

object Value { get; }

Property Value

object

Methods

Click(MouseButton)

Clicks the cell using the specified MouseButton.

void Click(MouseButton button = MouseButton.Left)

Parameters

button MouseButton

Optional. Either the Left or Right value of MouseButton. Default = MouseButton.Left.

Click(MouseButton, TableKeyModifier)

Clicks the cell using the specified MouseButton.

void Click(MouseButton button, TableKeyModifier modifier)

Parameters

button MouseButton

Either the Left or Right value of MouseButton

modifier TableKeyModifier

A TableKeyModifier value indicating keys to be pressed and held while the operation is performed.

DoubleClick(MouseButton)

Double clicks the cell using the specified MouseButton.

void DoubleClick(MouseButton button = MouseButton.Left)

Parameters

button MouseButton

Optional. Either the Left or Right value of MouseButton. Default = MouseButton.Left.

DoubleClick(MouseButton, TableKeyModifier)

Double clicks the cell using the specified MouseButton.

void DoubleClick(MouseButton button, TableKeyModifier modifier)

Parameters

button MouseButton

Either the Left or Right value of MouseButton

modifier TableKeyModifier

A TableKeyModifier value indicating keys to be pressed and held while the operation is performed.

DragAndDropOn(ITableCell, MouseButton)

Drags and drops this cell to the specified target ITableCell

void DragAndDropOn(ITableCell targetCell, MouseButton button = MouseButton.Left)

Parameters

targetCell ITableCell

The target ITableCell on which this ITableCell is dropped.

button MouseButton

Optional. Either the Left or Right value of MouseButton. Default = MouseButton.Left.

DragAndDropOn(ITableCell, MouseButton, TableKeyModifier)

Clicks the cell using the specified MouseButton.

void DragAndDropOn(ITableCell targetCell, MouseButton button, TableKeyModifier modifier)

Parameters

targetCell ITableCell

The target ITableCell on which this ITableCell is dropped.

button MouseButton

Either the Left or Right value of MouseButton

modifier TableKeyModifier

A TableKeyModifier value indicating keys to be pressed and held while the operation is performed.

SetValue(object)

Sets the cell value.

void SetValue(object value)

Parameters

value object

The value.