Interface ITableRow<T>
A row of a table, grid or APO Grid control in SAP GUI for Windows applications.
public interface ITableRow<T> where T : ITableCellBase
Type Parameters
T
Properties
Cells
The cells in this row.
ReadOnlyCollection<T> Cells { get; }
Property Value
RowIndex
The 0 based index of the row.
uint RowIndex { get; }
Property Value
Methods
GetCell(string)
Returns a cell from the row by column name.
T GetCell(string columnName)
Parameters
columnNamestringThe name of the column.
Returns
- T
the cell.