styledAnchorPane

fun styledAnchorPane(vararg styleClass: String, id: String? = null): AnchorPane

Create a styled AnchorPane.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledAnchorPane(vararg styleClass: String, id: String? = null): AnchorPane

Add a styled AnchorPane to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledAnchorPane(vararg styleClass: String, id: String? = null, configuration: KtfxAnchorPane.() -> Unit): AnchorPane

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

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