TreeView for WinForms | ComponentOne
C1.Framework Namespace / TreeColumnCollection Class / InsertItem Method
The zero-based index at which item should be inserted.
The object to insert. The value can be a null reference (Nothing in Visual Basic) for reference types.

In This Topic
    InsertItem Method (TreeColumnCollection)
    In This Topic
    Inserts an element into the Collection at the specified index.
    Syntax
    'Declaration
     
    
    Protected Overrides Sub InsertItem( _
       ByVal index As Integer, _
       ByVal item As GridColumn _
    ) 
    protected override void InsertItem( 
       int index,
       GridColumn item
    )

    Parameters

    index
    The zero-based index at which item should be inserted.
    item
    The object to insert. The value can be a null reference (Nothing in Visual Basic) for reference types.
    Exceptions
    ExceptionDescription
    index is less than zero. -or- index is greater than Count.
    See Also