styledJFXProgressBar

fun styledJFXProgressBar(progress: Double = INDETERMINATE_PROGRESS, vararg styleClass: String, id: String? = null): JFXProgressBar

Create a styled JFXProgressBar.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

Add a styled JFXProgressBar to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledJFXProgressBar(progress: Double = INDETERMINATE_PROGRESS, vararg styleClass: String, id: String? = null, configuration: JFXProgressBar.() -> Unit): JFXProgressBar

Create a styled JFXProgressBar 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.styledJFXProgressBar(progress: Double = INDETERMINATE_PROGRESS, vararg styleClass: String, id: String? = null, configuration: JFXProgressBar.() -> Unit): JFXProgressBar

Add a styled JFXProgressBar 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.