Topic closed:
Please note this is an old forum thread. Information in this post may be out-to-date and/or erroneous.
Every phpdocx version includes new features and improvements. Previously unsupported features may have been added to newer releases, or past issues may have been corrected.
I tried to modify the text i add to my docx but the options doesnt work
my code:
$salutationText = array();
$salutationText[] = array(
'text' => $salutation . ' ' . $survey->getFirstname() . ' ' . $survey->getLastname(),
'bold' => 'true',
'fontSize' => '20'
);
$this->addText($salutationText, array('bold' => 'true', 'fontSize' => '20'));
i'm using the trial version, isn't it working because i used the trial version?