styledFlowPane

fun styledFlowPane(orientation: Orientation = HORIZONTAL, hgap: Double, vgap: Double, vararg styleClass: String, id: String? = null): FlowPane
fun styledFlowPane(orientation: Orientation = HORIZONTAL, gap: Double = 0.0, vararg styleClass: String, id: String? = null): FlowPane

Create a styled FlowPane.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledFlowPane(orientation: Orientation = HORIZONTAL, hgap: Double, vgap: Double, vararg styleClass: String, id: String? = null): FlowPane
fun NodeManager.styledFlowPane(orientation: Orientation = HORIZONTAL, gap: Double = 0.0, vararg styleClass: String, id: String? = null): FlowPane

Add a styled FlowPane to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledFlowPane(orientation: Orientation = HORIZONTAL, hgap: Double, vgap: Double, vararg styleClass: String, id: String? = null, configuration: KtfxFlowPane.() -> Unit): FlowPane
inline fun styledFlowPane(orientation: Orientation = HORIZONTAL, gap: Double = 0.0, vararg styleClass: String, id: String? = null, configuration: KtfxFlowPane.() -> Unit): FlowPane

Create a styled FlowPane 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.styledFlowPane(orientation: Orientation = HORIZONTAL, hgap: Double, vgap: Double, vararg styleClass: String, id: String? = null, configuration: KtfxFlowPane.() -> Unit): FlowPane
inline fun NodeManager.styledFlowPane(orientation: Orientation = HORIZONTAL, gap: Double = 0.0, vararg styleClass: String, id: String? = null, configuration: KtfxFlowPane.() -> Unit): FlowPane

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