WinTable.GetCell Method
Gets the cell based on the row and column indices.
Namespace: Microsoft.VisualStudio.TestTools.UITesting.WinControls
Assembly: Microsoft.VisualStudio.TestTools.UITesting (in Microsoft.VisualStudio.TestTools.UITesting.dll)
Syntax
'Declaration
Public Function GetCell ( _
rowIndex As Integer, _
columnIndex As Integer _
) As WinCell
public WinCell GetCell(
int rowIndex,
int columnIndex
)
public:
WinCell^ GetCell(
int rowIndex,
int columnIndex
)
member GetCell :
rowIndex:int *
columnIndex:int -> WinCell
public function GetCell(
rowIndex : int,
columnIndex : int
) : WinCell
Parameters
rowIndex
Type: Int32The 0-based row index of the cell.
columnIndex
Type: Int32The 0-based column index of the cell.
Return Value
Type: Microsoft.VisualStudio.TestTools.UITesting.WinControls.WinCell
The cell object.
Remarks
Example: Get cell at 2, 5. Note that index is 0 based.
WinCell cell = myTable.GetCell(2, 5);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualStudio.TestTools.UITesting.WinControls Namespace