styledHyperlinkLabel
inline 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.
inline fun NodeContainer.styledHyperlinkLabel(text: String? = null, vararg styleClass: String, id: String? = null): HyperlinkLabel
Add a styled HyperlinkLabel to this container.
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 NodeContainer.styledHyperlinkLabel(text: String? = null, vararg styleClass: String, id: String? = null, configuration: HyperlinkLabel.() -> Unit): HyperlinkLabel
Add a styled HyperlinkLabel 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.