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