 "columnHeader"
"columnHeader"
    
    Changes specific column labels in the table header.
Synopsis
setValue(string shape, "columnHeader", int i, langString
                Title);
getValue(string shape, "columnHeader", int i, langString
                &Title);
shape.columnHeader(int i, langString Title);
Parameters
| Parameter | Description | 
|---|---|
| shape | Name of the object | 
| i | Column index, starting at 0 | 
| Title | Table header text | 
Description
This functions allows changing the texts in the table header whereby the index of the column can be specified. By stating an empty string an empty column header can be used.
             Example
            Example
        
main()
{
  shape table=getShape("table123");
  // The 4th column header is set to "Addresses"
  table.columnHeader(3, "Addresses");
}Assignment
Table
