Range

constructor(value: Number? = null, name: String? = null, min: Number = 0, max: Number = 100, step: Number = RANGE_DEFAULT_STEP, label: String? = null, rich: Boolean = false, init: Range.() -> Unit? = null)

Parameters

value

range input value

name

the name attribute of the generated HTML input element

min

minimal value (default 0)

max

maximal value (default 100)

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