SetCellValue Method (JTable)

Class

JTable class

Action

Sets the specified value for the specified cell in the table.

Syntax

table.SetCellValue(row, column, value)
Variable Description
row The index of the row. The value is one-based. INTEGER.
column The name or index of the column. LISTITEM.
value The cell value object. ANYTYPE.

Examples

Table.SetCellValue(1, "Product Name", "SilkTest")
Table.SetCellValue(1, 4, "SilkTest")