MergeTableCells
Version history
This function was introduced in Quick PDF Library version 7.14.
Description
Merges multiple cells from the specified table into one cell.
Syntax
Delphi
function TQuickPDF0813.MergeTableCells(TableID, FirstRow, FirstColumn, LastRow,
LastColumn: Integer): Integer;
ActiveX
Function QuickPDF0813.PDFLibrary::MergeTableCells(TableID As Long, FirstRow As Long,
FirstColumn As Long, LastRow As Long, LastColumn As Long) As Long
DLL
int QuickPDFMergeTableCells(int InstanceID, int TableID, int FirstRow,
int FirstColumn, int LastRow, int LastColumn)
Parameters
| TableID | A TableID returned by the CreateTable function |
| FirstRow | The the number of the first row to set. Top row is row number 1. |
| FirstColumn | The the number of the first column to set. Left most column is column number 1. |
| LastRow | The number of the final row to set |
| LastColumn | The number of the final column to set |