 "enableRowResize"
"enableRowResize"
    
    This function allows resizing of table row heights with the mouse.
Synopsis
setValue(string shape, "enableRowResize", bool on);
getValue(string shape, "enableRowResize", bool &on);
shape.enableRowResize(bool on);
Parameters
| Parameter | Description | 
|---|---|
| shape | Name of the table object (for example, Table1) | 
| on | TRUE enables the function and FALSE disables the function. | 
Description
If the function has been enabled, you can change the row height of a table using the mouse.
 Example
Example
main()
{
  TABLE1.enableRowResize(TRUE); // Enables the function
}
// Or
main()
{
  shape table=getShape("table123");
  // Enables the function
  setValue("TABLE1", "enableRowResize", TRUE);
}Assignment
Table
