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.
HtmlTable::GetCell Method (Int32, Int32)
Gets the cell based on the row and column indices.
The object returned could be HtmlCell or HtmlHeaderCell.
Assembly: Microsoft.VisualStudio.TestTools.UITesting (in Microsoft.VisualStudio.TestTools.UITesting.dll)
Parameters
- rowIndex
-
Type:
System::Int32
The 0-based row index of the cell.
- columnIndex
-
Type:
System::Int32
The 0-based column index of the cell.
Return Value
Type: Microsoft.VisualStudio.TestTools.UITesting.HtmlControls::HtmlControl^The cell object.
Example: Get cell at 2, 5. Note that index is 0 based.
HtmlControl cell = myTable.GetCell(2, 5);
Show: