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:

ValueDescription
newarrayData 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:

ValueDescription
Itemarray@FM-delimited array of columns where columns are @VM-delimited arrays of cells.
ExistingpropArray of values, when Set_Property was called.

See also

LIST propertyCOLDATA propertyROWDATA property

  • No labels