ToolStripItemCollection.Remove(ToolStripItem) Method

Definition

Removes the specified item from the collection.

public:
 void Remove(System::Windows::Forms::ToolStripItem ^ value);
public void Remove (System.Windows.Forms.ToolStripItem value);
member this.Remove : System.Windows.Forms.ToolStripItem -> unit
Public Sub Remove (value As ToolStripItem)

Parameters

value
ToolStripItem

The ToolStripItem to remove from the ToolStripItemCollection.

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 RemoveAt 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