The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
HtmlRow::GetCell Method (Int32)
Gets the cell based on the cell index.
Assembly: Microsoft.VisualStudio.TestTools.UITesting (in Microsoft.VisualStudio.TestTools.UITesting.dll)
Parameters
- cellIndex
-
Type:
System::Int32
The 0-based index in the row of the cell.
Return Value
Type: Microsoft.VisualStudio.TestTools.UITesting.HtmlControls::HtmlCell^The cell object.
Example: Get cell at 2. Note that index is 0 based.
HtmlCell cell = myRow.GetCell(2);
Show: