ToolStripItemCollection::Clear Method ()

 

Removes all items from the collection.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
virtual void Clear()

Exception Condition
NotSupportedException

The ToolStripItemCollection is read-only.

Use the Clear method to remove the entire collection of controls from a parent control.

To remove an individual control from the collection, use the Remove or RemoveAt method.

To add new ToolStripItem controls to the ToolStripItemCollection, use the Add or AddRange method.

Notes to Inheritors:

When overriding Clear in a derived class, be sure to call the base class's Clear method to ensure that all the controls are removed from the collection.

.NET Framework
Available since 2.0
Return to top
Show: