Table of Contents

Interface ITableCell

A single cell in a Java Table.

Namespace: HP.LFT.SDK.Java
Assembly: HP.LFT.SDK.dll
Syntax
public interface ITableCell

Properties

ColumnHeader

The column header name of this cell.

Declaration
string ColumnHeader { get; }
Property Value
Type Description
string

Value

The content of this cell.

Declaration
object Value { get; }
Property Value
Type Description
object

Methods

Click(MouseButton)

Clicks the cell using the specified MouseButton.

Declaration
void Click(MouseButton button = MouseButton.Left)
Parameters
Type Name Description
MouseButton button

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

Click(MouseButton, TableKeyModifier)

Clicks the cell using the specified MouseButton.

Declaration
void Click(MouseButton button, TableKeyModifier modifier)
Parameters
Type Name Description
MouseButton button

Either the Left or Right value of MouseButton

TableKeyModifier modifier

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.

Declaration
void DoubleClick(MouseButton button = MouseButton.Left)
Parameters
Type Name Description
MouseButton button

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

DoubleClick(MouseButton, TableKeyModifier)

Double clicks the cell using the specified MouseButton.

Declaration
void DoubleClick(MouseButton button, TableKeyModifier modifier)
Parameters
Type Name Description
MouseButton button

Either the Left or Right value of MouseButton

TableKeyModifier modifier

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

Declaration
void DragAndDropOn(ITableCell targetCell, MouseButton button = MouseButton.Left)
Parameters
Type Name Description
ITableCell targetCell

The target ITableCell on which this ITableCell is dropped.

MouseButton button

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

DragAndDropOn(ITableCell, MouseButton, TableKeyModifier)

Clicks the cell using the specified MouseButton.

Declaration
void DragAndDropOn(ITableCell targetCell, MouseButton button, TableKeyModifier modifier)
Parameters
Type Name Description
ITableCell targetCell

The target ITableCell on which this ITableCell is dropped.

MouseButton button

Either the Left or Right value of MouseButton

TableKeyModifier modifier

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

SetValue(object)

Sets the cell value.

Declaration
void SetValue(object value)
Parameters
Type Name Description
object value

The value.