AppendTableRows
Page layout
Description
Adds rows to the bottom of the specified table.
Syntax
Delphi
function TPDFlib.AppendTableRows(TableID, NewRowCount: Integer): Integer;ActiveX
Function PDFlib::AppendTableRows(TableID As Long, NewRowCount As Long) As LongDLL
int DLAppendTableRows(int InstanceID, int TableID, int NewRowCount);Parameters
| TableID | A TableID returned by the CreateTable function |
|---|---|
| NewRowCount | The number of rows to add to the table |
Return values
| 0 | Rows could not be added. Check the TableID parameter and make sure NewRowCount is greater than or equal to 1. |
|---|---|
| Non-zero | The total number of rows in the table after adding the new rows. |