styledJfxProgressBar
inline 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.
inline fun NodeContainer.styledJfxProgressBar(progress: Double = INDETERMINATE_PROGRESS, vararg styleClass: String, id: String? = null): JFXProgressBar
Add a styled JFXProgressBar to this container.
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 NodeContainer.styledJfxProgressBar(progress: Double = INDETERMINATE_PROGRESS, vararg styleClass: String, id: String? = null, configuration: JFXProgressBar.() -> Unit): JFXProgressBar
Add a styled JFXProgressBar 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.