layoutInfo.setRowGroup(row,col,name)

Sets the row group for specified cell in a Freehand Table. See Create a Freehand Table for more information about ‘Row Group’.

Parameter

row

row index

col

column index

name

Cell name to use for row group or '(default)'

Example

FreehandTable1.layoutInfo.setRowGroup(1,0,'(default)');

Either syntax below can be used in component script:

layoutInfo.setRowGroup                 // unqualified
FreehandTable1.layoutInfo.setRowGroup  // qualified

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