"namedColumnHeader"

Changes the title of a specific column.

Synopsis

setValue(string shape, "namedColumnHeader", string Name, langString Title);

getValue(string shape, "namedColumnHeader", string Name, langString &Title);

shape.namedColumnHeader(string Name, langString Title);

Parameters

Parameter Description
shape Name of the object
Name Name of the column
Title New column title

Description

This function allows you to change the column title. "Name"; is the name of the column and "Title"; is the new text.

Example

In this example, the title of column "#3" will be changed to "First name".

main()
{
  TABLE1.namedColumnHeader("#3", "First name");
}

Assignment

Table