Spinner

constructor(value: Number? = null, name: String? = null, min: Int? = null, max: Int? = null, step: Int = SPINNER_DEFAULT_STEP, label: String? = null, rich: Boolean = false, init: Spinner.() -> Unit? = null)

Parameters

value

spinner value

name

the name attribute of the generated HTML input element

min

minimal value

max

maximal value

step

step value (default 1)

label

label text bound to the input element

rich

determines if label can contain HTML code

init

an initializer extension function