Display
Sets the component instance to display-only, meaning that data cannot be modified
using structure editor functions. Valid values are True
or
False
(default)
newinstance"A_FORM",
"MyInstance",
"Display=
|
True
False
"
Value | Description |
---|---|
False
|
Component instance can be edited using structure editor functions. |
True
|
Component instance is display-only |
Description
When a form instance is display-only, data cannot be modified using structure editor functions. It is still possible to modify data with ProcScript statements, but this is not recommended since it makes maintaining the form more difficult.
For example, the following statement starts a display-only form:
$1 = $1 + 1 newinstance "MYFORM", "MYFORM%%$1", "DISPLAY=TRUE"