Available in:
Apps (win)
Apps (char)
Reportwriter
RPC
Standalone PL
X
X
X
X
X
expr list_ixed(list-name,row,col) list list-name int row,col
| list-name | specifies the name of the list.
|
| row | specifies row position.
|
| col | specifies column in the row. |
{
list xx;
xx = list_open("20 16 10", 1000, "ListC");
list_mod(xx, 1, "1", "2", "3");
list_mod(xx, 1, "4", "5", "6");
printf(list_ixed(xx, 1, 1));
list_close(xx);
}