[]
Removes all controls from a IControlCollection.
After this method is called, the collection is empty.
void Clear()
Sub Clear()
IControlCollection controls = worksheet.Controls;
controls.AddButton(20, 20, 100, 24);
controls.AddCheckBox(54, 13.2, 64.2, 18);
controls.Clear();