MobileListItemCollection.IndexOf(MobileListItem) Method

Definition

Gets the index of the specified item in a MobileListItemCollection object. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 int IndexOf(System::Web::UI::MobileControls::MobileListItem ^ item);
public int IndexOf (System.Web.UI.MobileControls.MobileListItem item);
member this.IndexOf : System.Web.UI.MobileControls.MobileListItem -> int
Public Function IndexOf (item As MobileListItem) As Integer

Parameters

item
MobileListItem

An item to search for in the collection.

Returns

The index of the specified item in the collection.

Remarks

Gets the index of the specified item as an integer. If the specified item is not in the collection, the IndexOf method returns -1.

Applies to

See also