styledJFXSpinner

fun styledJFXSpinner(progress: Double = INDETERMINATE_PROGRESS, vararg styleClass: String, id: String? = null): JFXSpinner

Create a styled JFXSpinner.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

Add a styled JFXSpinner to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

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

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