styledHyperlinkLabel

fun styledHyperlinkLabel(text: String? = null, vararg styleClass: String, id: String? = null): HyperlinkLabel

Create a styled HyperlinkLabel.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledHyperlinkLabel(text: String? = null, vararg styleClass: String, id: String? = null): HyperlinkLabel

Add a styled HyperlinkLabel to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledHyperlinkLabel(text: String? = null, vararg styleClass: String, id: String? = null, configuration: HyperlinkLabel.() -> Unit): HyperlinkLabel

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

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