DoubleColumnSpec

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

Constructors

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

Properties

Link copied to clipboard
Link copied to clipboard