GetCellText Method (JTable)

Class

JTable.

Action

Returns the cell text.

Syntax

cellText = table.GetCellText(row, column)
Variable Description
cellText The cell text. String.
row The index of the row. The value is zero-based. Integer.
column The name or index of the column. ItemIdentifier.

Examples

Dim cellText As String = table.GetCellText(1, "Product")
cellText = table.GetCellText(1, 3)