Skip to main content
A newer version of this page is available. .

RadioGroupItemCollection.Remove(RadioGroupItem) Method

Removes the specified item from the collection.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

public virtual void Remove(
    RadioGroupItem item
)

Parameters

Name Type Description
item RadioGroupItem

The RadioGroupItem to remove from the collection.

Remarks

Use the Remove method to remove a specific item from the collection. When an item is removed, all following items are moved up one position in the collection.

To add a new item to the collection, use the RadioGroupItemCollection.Add, RadioGroupItemCollection.AddRange and RadioGroupItemCollection.Insert methods.

See Also