ControlElementCollection.Remove Method

Definition

Removes a ControlElement from the collection. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

Overloads

Remove(String)

Removes the ControlElement object identified by name from the collection. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

Remove(ControlElement)

Removes the given ControlElement from the collection. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

Remove(String)

Removes the ControlElement object identified by name from the collection. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 void Remove(System::String ^ name);
public void Remove (string name);
member this.Remove : string -> unit
Public Sub Remove (name As String)

Parameters

name
String

The name of the ControlElement to remove.

See also

Applies to

Remove(ControlElement)

Removes the given ControlElement from the collection. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 void Remove(System::Web::UI::MobileControls::ControlElement ^ controlElement);
public void Remove (System.Web.UI.MobileControls.ControlElement controlElement);
member this.Remove : System.Web.UI.MobileControls.ControlElement -> unit
Public Sub Remove (controlElement As ControlElement)

Parameters

controlElement
ControlElement

A ControlElement object.

See also

Applies to