styledGridPane

fun styledGridPane(vararg styleClass: String, id: String? = null): GridPane

Create a styled GridPane.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledGridPane(vararg styleClass: String, id: String? = null): GridPane

Add a styled GridPane to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledGridPane(vararg styleClass: String, id: String? = null, configuration: KtfxGridPane.() -> Unit): GridPane

Create a styled GridPane 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.styledGridPane(vararg styleClass: String, id: String? = null, configuration: KtfxGridPane.() -> Unit): GridPane

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