Partilhar via


Método WpfTable.GetCell

Obtém a célula com base nos índices de linha e coluna.

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

Sintaxe

'Declaração
Public Function GetCell ( _
    rowIndex As Integer, _
    columnIndex As Integer _
) As WpfCell
public WpfCell GetCell(
    int rowIndex,
    int columnIndex
)
public:
WpfCell^ GetCell(
    int rowIndex, 
    int columnIndex
)
member GetCell : 
        rowIndex:int * 
        columnIndex:int -> WpfCell 
public function GetCell(
    rowIndex : int, 
    columnIndex : int
) : WpfCell

Parâmetros

  • rowIndex
    Tipo: System.Int32
    O 0 no índice da linha da célula.
  • columnIndex
    Tipo: System.Int32
    O 0 no índice da coluna da célula.

Valor de retorno

Tipo: Microsoft.VisualStudio.TestTools.UITesting.WpfControls.WpfCell
O objeto da célula.

Comentários

Exemplo - obtenha a célula em 2, 5.O índice é baseado de nota 0.

Célula de WpfCell = myTable.GetCell (2, 5);

Segurança do .NET Framework

Consulte também

Referência

WpfTable Classe

Namespace Microsoft.VisualStudio.TestTools.UITesting.WpfControls