styledProgressBar

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.


fun NodeManager.styledProgressBar(progress: Double = INDETERMINATE_PROGRESS, vararg styleClass: String, id: String? = null): ProgressBar

Add a styled ProgressBar to this manager.

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 NodeManager.styledProgressBar(progress: Double = INDETERMINATE_PROGRESS, vararg styleClass: String, id: String? = null, configuration: ProgressBar.() -> Unit): ProgressBar

Add a styled ProgressBar with configuration block to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.