Table of Contents

Interface ITableRow<T>

Namespace
HP.LFT.SDK.SAP.GUI
Assembly
HP.LFT.SDK.dll

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

ReadOnlyCollection<T>

RowIndex

The 0 based index of the row.

uint RowIndex { get; }

Property Value

uint

Methods

GetCell(string)

Returns a cell from the row by column name.

T GetCell(string columnName)

Parameters

columnName string

The name of the column.

Returns

T

the cell.