styledTaskProgressView
inline fun <T : Task<*>> styledTaskProgressView(vararg styleClass: String, id: String? = null): TaskProgressView<T>
Create a styled TaskProgressView.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun <T : Task<*>> NodeContainer.styledTaskProgressView(vararg styleClass: String, id: String? = null): TaskProgressView<T>
Add a styled TaskProgressView to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun <T : Task<*>> styledTaskProgressView(vararg styleClass: String, id: String? = null, configuration: TaskProgressView<T>.() -> Unit): TaskProgressView<T>
Create a styled TaskProgressView with configuration block.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.
inline fun <T : Task<*>> NodeContainer.styledTaskProgressView(vararg styleClass: String, id: String? = null, configuration: TaskProgressView<T>.() -> Unit): TaskProgressView<T>
Add a styled TaskProgressView 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.