styledProgressBar
inline fun styledProgressBar(progress: Double = INDETERMINATE_PROGRESS, vararg styleClass: String, id: String? = null): ProgressBar
Create a styled ProgressBar.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun NodeContainer.styledProgressBar(progress: Double = INDETERMINATE_PROGRESS, vararg styleClass: String, id: String? = null): ProgressBar
Add a styled ProgressBar to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun styledProgressBar(progress: Double = INDETERMINATE_PROGRESS, vararg styleClass: String, id: String? = null, configuration: ProgressBar.() -> Unit): ProgressBar
Create a styled ProgressBar with configuration block.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.
inline fun NodeContainer.styledProgressBar(progress: Double = INDETERMINATE_PROGRESS, vararg styleClass: String, id: String? = null, configuration: ProgressBar.() -> Unit): ProgressBar
Add a styled ProgressBar with configuration block to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.