styledHyperlink

fun styledHyperlink(text: String? = null, graphic: Node? = null, vararg styleClass: String, id: String? = null): Hyperlink

Create a styled Hyperlink.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledHyperlink(text: String? = null, graphic: Node? = null, vararg styleClass: String, id: String? = null): Hyperlink

Add a styled Hyperlink to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledHyperlink(text: String? = null, graphic: Node? = null, vararg styleClass: String, id: String? = null, configuration: Hyperlink.() -> Unit): Hyperlink

Create a styled Hyperlink 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.styledHyperlink(text: String? = null, graphic: Node? = null, vararg styleClass: String, id: String? = null, configuration: Hyperlink.() -> Unit): Hyperlink

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