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.

WpfTable::GetRow Method (Int32)

 

Gets the row based on the row index.

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

public:
WpfRow^ GetRow(
	int rowIndex
)

Parameters

rowIndex
Type: System::Int32

The 0-based row index.

Example - Get third row. Note index is 0 based.

WpfRow row = myTable.GetRow(2);

Return to top
Show: