Progress

data class Progress(percent: Int, value: Int)

Foundation class of the slider data handling that bundles the value and its percentage.

Parameters

percent

the calculated percent of the value; primarily used for CSS positioning

value

the actual value of the slider

Constructors

Progress
Link copied to clipboard
js
fun Progress(percent: Int = 0, value: Int = 0)
the calculated percent of the value; primarily used for CSS positioning

Properties

percent
Link copied to clipboard
js
val percent: Int = 0
the calculated percent of the value; primarily used for CSS positioning
value
Link copied to clipboard
js
val value: Int = 0
the actual value of the slider