TreeView for WinForms | ComponentOne
C1.Framework Namespace / ElementList Class / RemoveAt Method
The zero-based index of the element to remove.

In This Topic
    RemoveAt Method (ElementList)
    In This Topic
    Removes the element at the specified index of the System.Collections.ArrayList.
    Syntax
    'Declaration
     
    
    Public Overrides Sub RemoveAt( _
       ByVal index As Integer _
    ) 
    public override void RemoveAt( 
       int index
    )

    Parameters

    index
    The zero-based index of the element to remove.
    Exceptions
    ExceptionDescription
    index is less than zero. -or- index is equal to or greater than System.Collections.ArrayList.Count.
    The System.Collections.ArrayList is read-only. -or- The System.Collections.ArrayList has a fixed size.
    See Also