ToolStripItemCollection.RemoveAt(Int32) Method

Definition

Removes an item from the specified index in the collection.

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 index value of the ToolStripItem to remove.

Exceptions

Remarks

When a ToolStripItem is removed from the ToolStripItemCollection, all subsequent controls are moved up one position in the collection.

You can also remove a ToolStripItem by using the Remove method, or remove all controls by using the Clear method.

To add new ToolStripItem objects to the collection, use the Add or AddRange methods.

Applies to