Information
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::GetRow Method (Int32)

 

Gets the row based on the row index.

Namespace:   Microsoft.VisualStudio.TestTools.UITesting.HtmlControls
Assembly:  Microsoft.VisualStudio.TestTools.UITesting (in Microsoft.VisualStudio.TestTools.UITesting.dll)

public:
HtmlControl^ GetRow(
	int rowIndex
)

Parameters

rowIndex
Type: System::Int32

The 0-based row index.

Example: Get the third row. Note that index is 0 based.

HtmlControl row = myTable.GetRow(2);

Return to top
Show: