Progress

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

The Bootstrap progress

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

Constructors

Link copied to clipboard
constructor(min: T, max: T, className: String? = null, init: Progress<T>.() -> Unit? = null)
constructor(bounds: Bounds<T>, className: String? = null, init: Progress<T>.() -> Unit? = null)

Properties

Link copied to clipboard
val bounds: <Error class: unknown class>

Functions

Link copied to clipboard

Returns the first progress bar.

Link copied to clipboard

Returns the list of all progress bars.

Link copied to clipboard
fun Progress<out Number>.progressNumeric(initialValue: Number = 0, contentGenerator: ContentGenerator<Number> = ContentGenerator { _, _, _ -> }, bgColor: BsBgColor? = null, className: String? = null, init: NumberProgressBarTag.() -> Unit? = null): <Error class: unknown class>
Link copied to clipboard
fun setBounds(min: T, max: T)