Additional features
Miscellaneous features of dynamic dialogs.
Defining cell attributes
In order to display array cells with
colors in a list controlled by a dynamic dialog, you can define a two-dimensional dynamic
array to hold cell attributes:
DEFINE attrs DYNAMIC ARRAY OF DIMENSION 2 OF STRING
...
LET attrs[row,col] = "red reverse"
...
CALL d.setArrayAttributes("custlist", attrs)
Note: If all cells of the array must get the same display attributes, use a simple
DYNAMIC
ARRAY OF STRING
.