styledProgressIndicator

fun styledProgressIndicator(progress: Double = INDETERMINATE_PROGRESS, vararg styleClass: String, id: String? = null): ProgressIndicator

Create a styled ProgressIndicator.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

Add a styled ProgressIndicator to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

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

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