IntColumnSpec

class IntColumnSpec<T>(headerName: String, widthSetting: WidthSetting, valueSelector: (T) -> Int, val formatToString: (Int) -> String = { it.toString() }, val parseToInt: (String) -> Int = { it.toInt() }, onEdit: (rowIndex: Int, newValue: Int) -> Unit? = null) : ColumnSpec<T, Int>

Constructors

Link copied to clipboard
constructor(headerName: String, widthSetting: WidthSetting, valueSelector: (T) -> Int, formatToString: (Int) -> String = { it.toString() }, parseToInt: (String) -> Int = { it.toInt() }, onEdit: (rowIndex: Int, newValue: Int) -> Unit? = null)

Properties

Link copied to clipboard
Link copied to clipboard