layoutInfo.setMergeRowGroup(row,col,name)

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

Parameter

row

row index

col

column index

name

Name of the cell representing the row group

Example

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

Either syntax below can be used in component script:

layoutInfo.setMergeRowGroup                 // unqualified
FreehandTable1.layoutInfo.setMergeRowGroup  // qualified

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