layoutInfo.setMergeCells(row,col,Boolean)

Sets the specified cell in a Freehand Table to be merged. See Create a Freehand Table for more information about ‘Merge Expanded Cells’.

Parameter

row

row index

col

column index

Boolean

true to enable cell expansion
false to disable cell expansion

Example

FreehandTable1.layoutInfo.setMergeCells(1,0,true);

Either syntax below can be used in component script:

layoutInfo.setMergeCells                 // unqualified
FreehandTable1.layoutInfo.setMergeCells  // qualified

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