ITableRow Interface
A single row in a Java Table.

C# Syntax

public interface ITableRow 
Public Properties
 NameDescription
PropertyCells

Returns the collection of ITableCell objects in the row.

C# Syntax

ReadOnlyCollection<ITableCell> Cells {get;}
Top
 

Public Methods

 NameDescription
Method

GetAllCellValues

Returns the content of all cells contained in the row.

C# Syntax

string[] GetAllCellValues()

Supported on UFT Developer versions 15.0.2 and later

Top