AppendTableColumns

Page layout

Description

Adds columns to the right of the specified table

Syntax

Delphi

function TPDFlib.AppendTableColumns(TableID, NewColumnCount: Integer): Integer;

ActiveX

Function PDFlib::AppendTableColumns(TableID As Long, NewColumnCount As Long) As Long

DLL

int DLAppendTableColumns(int InstanceID, int TableID, int NewColumnCount);

Parameters

TableIDA TableID returned by the CreateTable function
NewColumnCountThe number of columns to add to the table

Return values

0Columns could not be added. Check the TableID parameter and make sure NewColumnCount is greater than or equal to 1.
Non-zeroThe total number of columns in the table after adding the new columns.