styledHyperlink
inline 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.
inline fun NodeContainer.styledHyperlink(text: String? = null, graphic: Node? = null, vararg styleClass: String, id: String? = null): Hyperlink
Add a styled Hyperlink to this container.
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 NodeContainer.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 container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.