TableCellCollection.IList.IndexOf(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Searches for the specified object and returns the zero-based index of the first occurrence within the collection.
virtual int System.Collections.IList.IndexOf(System::Object ^ o) = System::Collections::IList::IndexOf;
int IList.IndexOf (object o);
abstract member System.Collections.IList.IndexOf : obj -> int
override this.System.Collections.IList.IndexOf : obj -> int
Function IndexOf (o As Object) As Integer Implements IList.IndexOf
Parameters
- o
- Object
The object to locate within the collection.
Returns
The zero-based index of the first occurrence of the object within the collection; otherwise, -1 if the object is not in the collection.
Implements
Remarks
Typically, you should use the GetCellIndex method to get the index of an element in a TableCellCollection object.
The IList.IndexOf method is an explicit interface member implementation. It can be used only when the TableCellCollection instance is cast to an IList interface.