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