flowPane

fun NodeManager.flowPane(orientation: Orientation = HORIZONTAL, hgap: Double, vgap: Double): FlowPane
fun NodeManager.flowPane(orientation: Orientation = HORIZONTAL, gap: Double = 0.0): FlowPane

Add a FlowPane to this manager.

Return

the control added.


inline fun flowPane(orientation: Orientation = HORIZONTAL, hgap: Double, vgap: Double, configuration: KtfxFlowPane.() -> Unit): FlowPane
inline fun flowPane(orientation: Orientation = HORIZONTAL, gap: Double = 0.0, configuration: KtfxFlowPane.() -> Unit): FlowPane

Create a FlowPane with configuration block.

Return

the control created.

Parameters

configuration

the configuration block.


inline fun NodeManager.flowPane(orientation: Orientation = HORIZONTAL, hgap: Double, vgap: Double, configuration: KtfxFlowPane.() -> Unit): FlowPane
inline fun NodeManager.flowPane(orientation: Orientation = HORIZONTAL, gap: Double = 0.0, configuration: KtfxFlowPane.() -> Unit): FlowPane

Add a FlowPane with configuration block to this manager.

Return

the control added.

Parameters

configuration

the configuration block.