SIL.FieldWorks.Common.Widgets.FwListBox.ObjectCollection.IndexOf C# (CSharp) Method

IndexOf() public method

Find the zero-based position of the item, or -1 if not found.
public IndexOf ( object item ) : int
item object
return int
			public virtual int IndexOf(object item)
			{
				CheckDisposed();
				return m_list.IndexOf(item);
			}