TableCellEvent
classin packageklyn.gui.windows
public class TableCellEvent extends GuiEvent:
└ TableCellEvent

Event emitted when a TableView cell is selected.

table.cellSelected += lambda(event: TableCellEvent): print(event.row + ":" + event.column)
Properties
Modifier and Type Member Description
public readonly property column
column as Int
Selected column index.
public readonly property row
row as Int
Selected row index.
Inherited Properties
propertyInherited Properties from Event: source, timestamp
Constructors
Modifier and Type Member Description
public TableCellEvent
TableCellEvent(source as Object, row as Int, column as Int):
Creates a cell-selection event.