SetTableRowHeight
Version history
This function was introduced in Quick PDF Library version 7.14.
Description
Sets the height of one or more table rows. If the row height is set to zero (default) the row will autosize to the maximum height of the contents of all the cells in the row.
Syntax
Delphi
function TQuickPDF0813.SetTableRowHeight(TableID, FirstRow, LastRow: Integer;
NewHeight: Double): Integer;
ActiveX
Function QuickPDF0813.PDFLibrary::SetTableRowHeight(TableID As Long,
FirstRow As Long, LastRow As Long, NewHeight As Double) As Long
DLL
int QuickPDFSetTableRowHeight(int InstanceID, int TableID, int FirstRow,
int LastRow, double NewHeight)
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. |
| LastRow | The number of the final row to set |
| NewHeight |
0 = auto size Non-zero = the new maximum height of the row |