itemObject

Type: Object array

Availability: Read or write at run time only

The itemObject property of the JadeTableElement class enables you to store an object with each element of a table. This allows an object to be stored with each sheet, row, column, and cell of the table.

For a description of this property, see the Table control itemObject property.

As the object reference that is stored is of the Object class, you may then need to cast it to the required class so that it can be used. (For details about type casting, see "Type Casts", in Chapter 1 of the JADE Developer’s Reference.)

The following example shows the use of the itemObject property.

vars
    atest : Atest;
begin
    beginTransaction;
    atest := table1.accessRow(table1.row).itemObject.Atest;
    delete atest;
    commitTransaction;
end;