ControlCollection.RemoveAt(Int32) Method

Definition

Removes a child control, at the specified index location, from the ControlCollection object.

public virtual void RemoveAt(int index);

Parameters

index
Int32

The ordinal index of the server control to be removed from the collection.

Exceptions

The ControlCollection is read-only.

Examples

The following code example uses the RemoveAt method to delete a child control from the myButton server control. The method call first specifies an index location of 1 from which the control is deleted. The example then writes to the containing page a text message saying that the control at that location has been deleted from the ControlCollection collection.

// Use the RemoveAt method to delete the child control
// at index location 1.           
myButton.Controls.RemoveAt(1);
msgRemoveAt.Text = "The control at index location 1 has been removed.";

Remarks

To remove a control from the collection based on its value, use the Remove method.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also