Class RadioButton
Radio button control
public class RadioButton : CheckBox, ICloneable
- Inheritance
-
objectRadioButton
- Implements
- Inherited Members
Constructors
RadioButton()
public RadioButton()
Properties
Checked
Is this control currently checked?
public override bool Checked { get; set; }
Property Value
GroupID
The ID of the radio button group - no auto-update
public uint GroupID { get; set; }
Property Value
Text
The text displayed on the control
public override string Text { get; set; }
Property Value
Methods
Clone()
Creates a deep copy of this instance.
public override Control Clone()
Returns
CloneFromTo(RadioButton, RadioButton)
Copies all members declared by RadioButton from one instance to another.
protected static void CloneFromTo(RadioButton from, RadioButton to)
Parameters
fromRadioButtontoRadioButton
CloneRadioButton()
Creates a deep copy of this RadioButton instance.
public RadioButton CloneRadioButton()
Returns
- RadioButton
The new copy of the RadioButton.