form

Table Properties to set the property without using script.

Specifies that the table should be “editable” by the user. See Access User-Modified Data for more details.

Type

Boolean

true: allow editing
false: do not allow editing (default)

Example

TableView1.form = true;

Either syntax below can be used in component script:

form                 // unqualified
TableView1.form      // qualified

For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required.