SetTableCellContent
Version history
This function was introduced in Quick PDF Library version 7.14.
Description
Sets the content of the specified cell. The content will be drawn with the equivalent of the DrawHTMLText function, prefixed with the necessary paragraph alignment, font size and font color tags.
Syntax
Delphi
function TDebenuPDFLibrary1811.SetTableCellContent(TableID, RowNumber,
ColumnNumber: Integer; HTMLText: WideString): Integer;
ActiveX
Function DebenuPDFLibrary1811.PDFLibrary::SetTableCellContent(TableID As Long,
RowNumber As Long, ColumnNumber As Long, HTMLText As String) As Long
DLL
int DPLSetTableCellContent(int InstanceID, int TableID, int RowNumber,
int ColumnNumber, wchar_t * HTMLText)
Parameters
TableID | A TableID returned by the CreateTable function |
RowNumber | The the row number of the cell. Top row is row number 1. |
ColumnNumber | The the column number of the cell. Left most column is column number 1. |
HTMLText | The HTML text to place into the specified cell |