Interface TableRow<T extends TableCellBase>


public interface TableRow<T extends TableCellBase>
A row of table, grid or APO Grid control in SAP GUI for Windows application.
  • Method Summary

    Modifier and Type
    Method
    Description
    getCell(String columnName)
    Returns a cell from the row by column name.
    Returns a list of the cells in this row.
    int
    Returns the 0 based index of the row.
  • Method Details

    • getCells

      List<T> getCells() throws GeneralLeanFtException
      Returns a list of the cells in this row.
      Returns:
      the list of cells.
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • getCell

      T getCell(String columnName)
      Returns a cell from the row by column name.
      Parameters:
      columnName - the column name.
      Returns:
      the cell.
    • getRowIndex

      int getRowIndex()
      Returns the 0 based index of the row.
      Returns:
      the row index.