styledJfxSpinner

inline 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.


inline fun NodeContainer.styledJfxSpinner(progress: Double = INDETERMINATE_PROGRESS, vararg styleClass: String, id: String? = null): JFXSpinner

Add a styled JFXSpinner to this container.

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

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