Table of Contents

Interface ITableRow<T>

A row of a table, grid or APO Grid control in SAP GUI for Windows applications.

Namespace: HP.LFT.SDK.SAP.GUI
Assembly: HP.LFT.SDK.dll
Syntax
public interface ITableRow<T> where T : ITableCellBase
Type Parameters
Name Description
T

Properties

Cells

The cells in this row.

Declaration
ReadOnlyCollection<T> Cells { get; }
Property Value
Type Description
ReadOnlyCollection<T>

RowIndex

The 0 based index of the row.

Declaration
uint RowIndex { get; }
Property Value
Type Description
uint

Methods

GetCell(string)

Returns a cell from the row by column name.

Declaration
T GetCell(string columnName)
Parameters
Type Name Description
string columnName

The name of the column.

Returns
Type Description
T

the cell.