Table of Contents

Class RadioButton

Namespace
OmegaGUI.Model
Assembly
OmegaGUI.dll

Radio button control

public class RadioButton : CheckBox, ICloneable
Inheritance
object
RadioButton
Implements
Inherited Members

Constructors

RadioButton()

public RadioButton()

Properties

Checked

Is this control currently checked?

public override bool Checked { get; set; }

Property Value

bool

GroupID

The ID of the radio button group - no auto-update

public uint GroupID { get; set; }

Property Value

uint

Text

The text displayed on the control

public override string Text { get; set; }

Property Value

string

Methods

Clone()

Creates a deep copy of this instance.

public override Control Clone()

Returns

Control

CloneFromTo(RadioButton, RadioButton)

Copies all members declared by RadioButton from one instance to another.

protected static void CloneFromTo(RadioButton from, RadioButton to)

Parameters

from RadioButton
to RadioButton

CloneRadioButton()

Creates a deep copy of this RadioButton instance.

public RadioButton CloneRadioButton()

Returns

RadioButton

The new copy of the RadioButton.