Progress

fun <T> Progress(min: T, max: T, className: String? = null, init: Progress<T>.() -> Unit? = null)

Parameters

min

the minimal value

max

the maximal value

className

CSS class names

init

an initializer extension function

fun <T> Progress(bounds: Bounds<T>, className: String? = null, init: Progress<T>.() -> Unit? = null)

Parameters

T

the type that describes the progress, typically @see Number

bounds

bounds of the progress

className

CSS class names

init

an initializer extension function