in the PRO version how can i change the amount of space between each call of addText?
If i have
addText("string a",$paramsText);
addText("string b",$paramsText);
the output will be
------------
string a
string b
-----------
while i want
-----------
string a
string b
-----------
I know there is the line
'lineSpacing'
option in addText
but this seems to work only for text inside the same addText call,
and this is not what i look for.
Any suggestion?
Thanks in advance.