ToolStripItemCollection.Clear Method

Definition

Removes all items from the collection.

public:
 virtual void Clear();
public virtual void Clear ();
abstract member Clear : unit -> unit
override this.Clear : unit -> unit
Public Overridable Sub Clear ()

Exceptions

Remarks

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.

Applies to