Insert Method (C1CollectionView)
 
            
                In This Topic
            
            Inserts an item to the underlying collection at the specified index. If view is sorted or filtered, the item is added to the end of the underlying collection.
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Sub Insert( _
   ByVal  As System.Integer, _
   ByVal  As System.Object _
) 
             
        
            
            public void Insert( 
   System.int ,
   System.object 
)
             
        
             
        
            Parameters
- index
 
- The zero-based index at which item should be inserted. This parameter is ignored if view is sorted or filtered.
 - item
 
- The item to insert.
 
            
             
            
            
            
            
            
            
            
            
            
            
            
            See Also