Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RadioGroupItemCollection.AddRange(RadioGroupItem[]) Method

Adds an array of items to the collection.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#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.

See Also