GridIteratorElement

data class GridIteratorElement<T>(    val columnIndex: Int,     val rowIndex: Int,     val component: T?)

Data class containing meta info about current grid element returned by its GridIterator.

Parameters

T

Type of boxed component.

Constructors

Link copied to clipboard
fun <T> GridIteratorElement(    columnIndex: Int,     rowIndex: Int,     component: T?)

Properties

Link copied to clipboard
val columnIndex: Int

Current column index.

Link copied to clipboard
val component: T?

Current component or null if there is no component present in this cell.

Link copied to clipboard
val rowIndex: Int

Current row index.