Freigeben über


WpfTable.GetCell-Methode

Ruft die Zelle auf Grundlage der Zeilen- und Spaltenindizes ab.

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

Syntax

'Declaration
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

Parameter

  • rowIndex
    Typ: System.Int32
    Das 0 basierende Zeilenindex der Zelle.
  • columnIndex
    Typ: System.Int32
    Das 0 basierende Spaltenindex der Zelle.

Rückgabewert

Typ: Microsoft.VisualStudio.TestTools.UITesting.WpfControls.WpfCell
Das Zellenobjekt.

Hinweise

Beispiel - Rufen Sie Zelle bei 2, 5. ab.Hinweisindex ist 0 basiert.

WpfCell-Zelle = myTable.GetCell (2, 5);

.NET Framework-Sicherheit

Siehe auch

Referenz

WpfTable Klasse

Microsoft.VisualStudio.TestTools.UITesting.WpfControls-Namespace