Interface ITableCell
A single cell in a Java Table.
public interface ITableCell
Properties
ColumnHeader
The column header name of this cell.
string ColumnHeader { get; }
Property Value
Value
The content of this cell.
object Value { get; }
Property Value
Methods
Click(MouseButton)
Clicks the cell using the specified MouseButton.
void Click(MouseButton button = MouseButton.Left)
Parameters
buttonMouseButtonOptional. 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
buttonMouseButtonEither the Left or Right value of MouseButton
modifierTableKeyModifierA 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
buttonMouseButtonOptional. 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
buttonMouseButtonEither the Left or Right value of MouseButton
modifierTableKeyModifierA 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
targetCellITableCellThe target ITableCell on which this ITableCell is dropped.
buttonMouseButtonOptional. 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
targetCellITableCellThe target ITableCell on which this ITableCell is dropped.
buttonMouseButtonEither the Left or Right value of MouseButton
modifierTableKeyModifierA 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
valueobjectThe value.