styledFlowPane

inline fun styledFlowPane(orientation: Orientation = HORIZONTAL, hgap: Double, vgap: Double, vararg styleClass: String, id: String? = null): FlowPane
inline 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.


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

Add a styled FlowPane to this container.

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

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.