ToolStripItemCollection.Remove(ToolStripItem) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
The ToolStripItemCollection is read-only.
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
.NET