Skip to main content

RadioGroupItem Class

Represents a single item in the collection.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public class RadioGroupItem :
    ICloneable

The following members return RadioGroupItem objects:

Remarks

This class represents a single item displayed in the radio group control. The collection is represented by the RadioGroupItemCollection object.

The RadioGroupItem.Description property specifies the item caption. The item’s value is specified by the RadioGroupItem.Value property.

Individual items can be accessed via the collection’s RadioGroupItemCollection.Item property using index notation.

Example

The following code shows how to add items to a RadioGroup and then select one of the items. To select an item, the item’s value is assigned to the editor’s BaseEdit.EditValue property.

RadioGroupClass

using DevExpress.XtraEditors.Controls;

// Create five items.
object[] itemValues = new object[] {10, 11, 12, 13, 14};
string [] itemDescriptions = new string [] {"Circle", "Rectangle", "Ellipse", "Triangle", "Square"};
for(int i = 0; i < itemValues.Length; i++) {
    radioGroup1.Properties.Items.Add(new RadioGroupItem(itemValues[i], itemDescriptions[i]));
}
//Select the Rectangle item.
radioGroup1.EditValue = 11;

Inheritance

Object
RadioGroupItem
See Also