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

RadioGroupItemCollection.AddRange(RadioGroupItem[]) Method

Adds an array of items to the collection.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

public virtual void AddRange(
    RadioGroupItem[] items
)

Parameters

Name Type Description
items RadioGroupItem[]

An array of RadioGroupItem objects representing items for the radio group editor.

Remarks

The AddRange method adds an array of items to the current RepositoryItemRadioGroup.Items collection. Each array element represents an object of the RadioGroupItem class and this controls the item’s description, value and index.

See the RadioGroupItemCollection.Add method to add a single item to the collection. To insert an object at a specified position, use the RadioGroupItemCollection.Insert method.

To remove an item from the collection, use the RadioGroupItemCollection.Remove method.

To access individual items in the collection, see the RadioGroupItemCollection.Item index.

Note: To ensure correct functionality, items’ values must be unique within the collection.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the AddRange(RadioGroupItem[]) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also