IRadioButton

Radio button interface. Can be used to implement radio button style behavior on almost any component that implements this interface.

Members

Functions

equals
bool equals(IRadioButton rhs)

Workaround the stupid issue of object.opEquals having to be @system inpure throw. The @gc would be fine still.

latchOff
void latchOff()

If the radio button is pressed, then it sets to unpressed. Does nothing otherwise.

latchOn
void latchOn()

Sets the radio button into its pressed state.

setGroup
void setGroup(IRadioButtonGroup group)

Sets the group of the radio button.

value
string value()

Returns the assigned value of the radio button.

Meta