Hi,
The justified center option isn't working in the following code:
<?php
require_once '../phpdocxpro/classes/CreateDocx.inc';
$docx = new CreateDocx();
$paramsText = array(
'font' => 'Times New Roman', 'sz' => '10'
);
$text = array();
$text[] =
array(
'text' => 'I am going to write',
'sz' => '13',
'jc' => 'center',
'b' => 'on'
);
$docx->addText($text, $paramsText);
$docx->createDocx('../word_documents/resume');
?>
Please advice.
Thanks,
Kamal