"rowHeader"
    
    Adds a header to a table row.
Synopsis
setValue(string shape, "rowHeader", int idx, langString header);
getValue(string shape, "rowHeader", int idx, langString
            &header);
shape.rowHeader(int idx, langString header);
Parameters
| Parameter | Description | 
|---|---|
| shape | Name of the object | 
| index | Index of the row. A header can only be added to a new row (row without header). | 
| header | The header for the row | 
Description
Adds a header to a table row.
                
                Example
            
In the following example, a new row and header are added to the table.
main()
{
  TABLE1.appendLine("Column1", "Testing");
  langString h = "Test3";
  TABLE1.rowHeader(2,h);
  //the header of the third row since the index starts from 0
}
        Assignment
Table