RadioButtonGroup

interface RadioButtonGroup : Group<RadioButton>

A RadioButtonGroup is a specialization of a Group that will enforce that only one RadioButton is selected in it at all times.

Functions

addComponent
Link copied to clipboard
common
open fun addComponent(builder: Builder<RadioButton>): AttachedComponent
Builds a Component using the given component Builder and adds it to this ComponentContainer.
abstract fun addComponent(component: RadioButton): AttachedComponent
Adds a child Component to this ComponentContainer.
addComponents
Link copied to clipboard
common
open fun addComponents(vararg components: Builder<RadioButton>): List<AttachedComponent>
Adds the given Components to this ComponentContainer.
abstract fun addComponents(vararg components: RadioButton): List<AttachedComponent>
Adds the given Components to this ComponentContainer.
equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
toString
Link copied to clipboard
common
open fun toString(): String

Properties

disabledProperty
Link copied to clipboard
common
abstract override val disabledProperty: Property<Boolean>
hiddenProperty
Link copied to clipboard
common
abstract override val hiddenProperty: Property<Boolean>
isDisabled
Link copied to clipboard
common
abstract override var isDisabled: Boolean
isHidden
Link copied to clipboard
common
abstract override var isHidden: Boolean
selectedButton
Link copied to clipboard
common
abstract var selectedButton: Maybe<RadioButton>
selectedButtonProperty
Link copied to clipboard
common
abstract val selectedButtonProperty: Property<Maybe<RadioButton>>
theme
Link copied to clipboard
common
abstract override var theme: ColorTheme
The (mutable) ColorTheme.
themeProperty
Link copied to clipboard
common
abstract override val themeProperty: Property<ColorTheme>
A Property that wraps the theme and offers data binding and observability features.
tileset
Link copied to clipboard
common
abstract override var tileset: TilesetResource
The (mutable) tileset value.
tilesetProperty
Link copied to clipboard
common
abstract val tilesetProperty: Property<TilesetResource>
A Property that wraps the tileset and offers data binding and observability features.

Inheritors

DefaultRadioButtonGroup
Link copied to clipboard

Sources

(source)
Link copied to clipboard