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

Collection.Add(ICollectionItem) Method

Adds a specified item to the end of the collection.

Namespace: DevExpress.XtraNavBar

Assembly: DevExpress.XtraNavBar.v19.1.dll

Declaration

public virtual void Add(
    ICollectionItem item
)

Parameters

Name Type Description
item ICollectionItem

An object supporting the ICollectionItem interface representing an item to be added.

Remarks

The Add method is used to add a specified item to the end of the collection. Descendants declare overloads of this method to add a specified item type and return the corresponding object. These methods use the Add method of a base class to perform the task.

See Also