Form::ControlCollection::Remove Method (Control^)

 

Removes a control from the form.

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

public:
virtual void Remove(
	Control^ value
) override

Parameters

value
Type: System.Windows.Forms::Control^

A Control to remove from the form.

You can use this method to remove controls that you no longer need in your form. If you want to display a control after it is removed, you will need to add the control back to the form using the Add method. To have a control remain on the form but not displayed, use the Visible property of the control.

.NET Framework
Available since 1.1
Return to top
Show: