setObject(row, col, value)

Sets the contents of an Editable Table cell to the specified value. See Table Properties for information on how to make a Table editable.

Parameters

row

row index of cell to modify

col

column index of cell to modify

value

value to be placed into cell

Example

// Insert text “Robert” into third row, fourth column:
TableView1.setObject(2,3,'Robert');

Either syntax below can be used in component script:

setObject                 // unqualified
TableView1.setObject      // qualified

For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required.