addItem

addItem(str: String): Integer;

The addItem method of the JadeTableSheet class adds a new row to the Table sheet referenced by this object. For a description of this method, see the Table control addItem method.

The following example shows the use of the addItem method.

// add a new row that has two columns for company name and address line 1
table1.accessSheet(2).addItem(coy.name & Tab & coy.address1);