Habanero.Faces.Win.ListBoxWin.ListBoxObjectCollectionWin.IndexOf C# (CSharp) Method

IndexOf() public method

Retrieves the index within the collection of the specified item
public IndexOf ( object value ) : int
value object An object representing the item to locate in the collection
return int
            public int IndexOf(object value)
            {
                return _items.IndexOf(value);
            }