Constructor
new TableCell()
A single cell in a Java Table.
Methods
click(buttonopt, modifieropt) → {Promise.<void>}
Clicks the cell using the specified MouseButton.
Parameters:
Returns:
a promise that is fulfilled when the click operation ends.
-
Type
- Promise.<void>
columnHeader() → {Promise.<string>}
The column header name of this cell.
Returns:
a promise that is fulfilled with the column header name of this cell.
-
Type
- Promise.<string>
doubleClick(buttonopt, modifieropt) → {Promise.<void>}
Double clicks the cell using the specified MouseButton.
Parameters:
Returns:
a promise that is fulfilled when the doubleClick operation ends.
-
Type
- Promise.<void>
dragAndDropOn(targetCell, buttonopt, modifieropt) → {Promise.<void>}
Parameters:
Returns:
a promise that is fulfilled when the doubleClick operation ends.
-
Type
- Promise.<void>
setValue(value) → {Promise.<void>}
Sets the cell value.
Parameters:
Name | Type | Description |
---|
value | Object | The value to set. |
Returns:
a promise that is fulfilled when the setValue operation ends.
-
Type
- Promise.<void>
value() → {Promise.<Object>}
The content of this cell.
Returns:
a promise that is fulfilled with the content of this cell.
-
Type
- Promise.<Object>