Do you own a Debenu Quick PDF Library version 7, 8, 9, 10, 11, 12, 13 or iSEDQuickPDF license? Upgrade to Debenu Quick PDF Library 14 today!
![]() |
changing the font in a table cell |
Post Reply ![]() |
Author | |
pdfOakleaf ![]() Beginner ![]() Joined: 24 Oct 10 Status: Offline Points: 10 |
![]() ![]() ![]() ![]() ![]() Posted: 28 Oct 10 at 12:10PM |
Is there any way to set the fontto use in a table
Although I change fonts in the main document I cant see how to do with within a table any help will be much appreciated Phil |
|
![]() |
|
Dimitry ![]() Team Player ![]() Joined: 18 Feb 10 Status: Offline Points: 37 |
![]() ![]() ![]() ![]() ![]() |
Table text is drawn using DrawHTMLText() engine. So you need to use a function like SetHTMLNormalFont() to select necessary font. Here is code sample that shows how to draw several tables using different fonts:
// QPL: TQuickPDF;
var
table: Integer; f1, f4, f10, f12: Integer; begin with QPL do begin SetOrigin(1); f1 := AddStandardFont(1); f4 := AddStandardFont(4); f10 := AddStandardFont(10); f12 := AddStandardFont(12); table := CreateTable(2, 2);
SetTableColumnWidth(table, 1, 2, 70); SetTableRowHeight(table, 1, 2, 30); SetTableCellContent(table, 1, 1, 'SOME TEXT');
SetTableCellContent(table, 1, 2, 'SOME TEXT'); SetTableCellContent(table, 2, 1, 'SOME TEXT'); SetTableCellContent(table, 2, 2, 'SOME TEXT'); SetHTMLNormalFont('Default', f1);
DrawTableRows(table, 50, 50, 1000, 1, 0); SetHTMLNormalFont('Default', f4); DrawTableRows(table, 250, 50, 1000, 1, 0); SetHTMLNormalFont('Default', f10); DrawTableRows(table, 50, 150, 1000, 1, 0); SetHTMLNormalFont('Default', f12); DrawTableRows(table, 250, 150, 1000, 1, 0); end; end; Edited by Dimitry - 01 Nov 10 at 10:16PM |
|
Regards,
Dmitry |
|
![]() |
|
pdfOakleaf ![]() Beginner ![]() Joined: 24 Oct 10 Status: Offline Points: 10 |
![]() ![]() ![]() ![]() ![]() |
thanks for letting me know - I'll have a play with these functions and I'm sure I'll get everything I need
thanks again Phil |
|
![]() |
Post Reply ![]() |
|
Tweet
|
Forum Jump | Forum Permissions ![]() You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |
Copyright © 2017 Debenu. Debenu Quick PDF Library is a PDF SDK. All rights reserved. About — Contact — Blog — Support — Online Store