set

operator fun set(    columnIndex: Int,     rowIndex: Int,     component: T?)

Sets content of desired grid cell. Overrides existing component in this cell. Pass null to remove a component.

Parameters

columnIndex

Column index in grid.

rowIndex

Row index in grid.

component

ComponentView to be added to the specified cell.