How to set color in DynaPDF Table?

Hi All!

How can I set font color text in a DynaPDF Table?
Regards

Ok I got it SetFillCOlor

call pdf.SetFillColor pdf.RGB(255,0,0) but How can I use it on PDF Table,only for change the color of the text of one cell in the Table?

Sorry Its SetTextColor and you assign the alpha channels and coordinates

e.g.

call table.SetTextColor(rowNum, 0, 0, 0, 255)

so row number and column number. Than in this case RGB with three color components.