ITableCell Interface
A single cell in the the ITable Web object.

C# Syntax

public interface ITableCell 
Public Properties
 NameDescription
PropertyColumnIndexThe cell's 0-based column index.  
PropertyRowIndexThe cell's 0-based row index.  
PropertyTextThe current text in the cell.  
Top
Public Methods
 NameDescription
MethodAsWebElementReturns a web element that corresponds to the current table cell, so that it can be used like any other web element.  
MethodFindChildren<TChild>Returns a child test object from this cell according to its type and index.  
MethodNumberOfChildrenWithType<TChild>Returns the number of child test objects of the specified type in this cell.  
Top