styledSeparator

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.


fun NodeManager.styledSeparator(orientation: Orientation = HORIZONTAL, vararg styleClass: String, id: String? = null): Separator

Add a styled Separator to this manager.

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 NodeManager.styledSeparator(orientation: Orientation = HORIZONTAL, vararg styleClass: String, id: String? = null, configuration: Separator.() -> Unit): Separator

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