Applies to
Edit table.
Description
Returns or sets all cell values as a two dimensioned array indexed by column, then row for the specified edit table control.
Usage
itemarray = Get_Property (objectname, "ARRAY" )
existingprop = Set_Property (objectname, "ARRAY" , newarray)
Remarks
Values passed in Set_Property:
Value | Description |
---|---|
newarray | Data appear column by column in the specified control. Columns are delimited by @FM, and cells in a column are delimited by @VM. |
The ARRAY property is structured by column by row. Conversely the LIST property is structured by row by column. For example, if you need to find an item in one column and extract a corresponding item from another column, use the locate statement and the ARRAY property. If you need to insert or delete rows, it is simpler to use the LIST property with the insert and delete functions.
Returns
Values returned by both Get_Property and Set_Property:
Value | Description |
---|---|
Itemarray | @FM-delimited array of columns where columns are @VM-delimited arrays of cells. |
Existingprop | Array of values, when Set_Property was called. |