ComponentOne CollectionView
C1.CollectionView Assembly / C1.CollectionView Namespace / ISupportEditing Interface / InsertAsync Method
The index where the item will be inserted.
The item to be inserted.

In This Topic
    InsertAsync Method (ISupportEditing)
    In This Topic
    Inserts the specified item at the specified index in the collection.
    Syntax
    'Declaration
     
    Function InsertAsync( _
       ByVal index As System.Integer, _
       ByVal item As System.Object _
    ) As System.Threading.Tasks.Task(Of Integer)
    System.Threading.Tasks.Task<int> InsertAsync( 
       System.int index,
       System.object item
    )

    Parameters

    index
    The index where the item will be inserted.
    item
    The item to be inserted.
    See Also