Skip to main content

ListBoxItemCollection.Insert(Int32, Object) Method

Creates a new item and adds it to the specified position within the collection.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public void Insert(
    int index,
    object item
)

Parameters

Name Type Description
index Int32

An integer value representing the zero-based index at which the created item should be inserted. If negative or exceeds the number of elements within the collection an exception is thrown.

item Object

An object representing the inserted item.

See Also