"columnEditable"

Defines the editing mode for a column.

Synopsis

setValue(string shape, "columnEditable", int k, bool ed);

getValue(string shape, "columnEditable", int k, bool &ed);

shape.columnEditable(int k, bool ed);

Parameters

Parameter Description
shape Name of the object
k Column index, starting with 0
ed Editable or not editable (TRUE/FALSE)

Description

If "TRUE", then column k (index starts at 0) can be overwritten by the user.

Normally the index column k=0 refers to the first column at the left.

Example

Sets the fourth column to editable.

main()
{
  table.columnEditable(3, TRUE);
}

Assignment

Table