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