Share via


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: Int32

    The 0-based row index of the cell.

  • columnIndex
    Type: Int32

    The 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

See Also

Reference

WinTable Class

Microsoft.VisualStudio.TestTools.UITesting.WinControls Namespace