styledPath

fun styledPath(vararg styleClass: String, id: String? = null): Path

Create a styled Path.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledPath(vararg styleClass: String, id: String? = null): Path

Add a styled Path to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledPath(vararg styleClass: String, id: String? = null, configuration: KtfxPath.() -> Unit): Path

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

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