Edit

Share via


TreeNodeStyleCollection.RemoveAt(Int32) Method

Definition

Removes the TreeNodeStyle object at the specified index ___location from the TreeNodeStyleCollection object.

public:
 void RemoveAt(int index);
public void RemoveAt(int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)

Parameters

index
Int32

The zero-based index ___location of the TreeNodeStyle to remove.

Remarks

Use the RemoveAt method to remove the TreeNodeStyle object at the specified zero-based index ___location from a TreeNodeStyleCollection object. All the items that are located after the removed node are then moved up one level to fill the vacant position in the tree structure. The indexes of the moved items are also updated.

As an alternative, you can remove a specific TreeNodeStyle object by using the Remove method. You can also remove every node in the collection by using the Clear method.

Applies to

See also