MobileListItemCollection.Remove Method

Definition

Removes the item with the specified value. 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 item with the specified value. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

Remove(MobileListItem)

Removes the item with the specified value. 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 item with the specified value. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 virtual void Remove(System::String ^ item);
public virtual void Remove (string item);
abstract member Remove : string -> unit
override this.Remove : string -> unit
Public Overridable Sub Remove (item As String)

Parameters

item
String

The value of the item to remove. The first item that matches this value in the collection is removed.

See also

Applies to

Remove(MobileListItem)

Removes the item with the specified value. 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::MobileListItem ^ item);
public void Remove (System.Web.UI.MobileControls.MobileListItem item);
member this.Remove : System.Web.UI.MobileControls.MobileListItem -> unit
Public Sub Remove (item As MobileListItem)

Parameters

item
MobileListItem

The value of the item to remove. The first item that matches this value in the collection is removed.

See also

Applies to