layoutInfo.setCellName(row,col,name)

Sets the name of the specified cell in a Freehand Table.

Parameter

row

row index

col

column index

name

name for the cell

Example

FreehandTable1.layoutInfo.setCellName(1,0,'state');

Either syntax below can be used in component script:

layoutInfo.setCellName                 // unqualified
FreehandTable1.layoutInfo.setCellName  // qualified

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