GetCellText Method (JTable)

Class

JTable class

Action

Returns the cell text.

Syntax

sCellText = table.GetCellText(row, column)
Variable Description
sCellText The cell text. STRING.
row The index of the row. The value is one-based. INTEGER.
column The name or index of the column. LISTITEM.

Examples

STRING sCellText = Table.GetCellText(1, "Product")
sCellText = Table.GetCellText(1, 3)