$options = [
'from' => '0,0',
'to' => '640,0',
'strokecolor' => '#000000',
'strokeweight' => '1',
'position' => 'relative',
];
$docx->addShape('line', $options);
$docx->addText('test test test');
When I use this the result becomes:
-------
[enter]
test test test
Is there a way to remove this extra row? I need text on the very next row without the space inbetween.
Also the from value... I do not undestand what convertion I need to use if i want the line to stop at 190mm (20 mm from right side on A4 paper).
Thanks!
(Using 6.0 Corporate)