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