Forum


Replies: 1   Views: 2332
Using pstyle for addheading() only applies part of the styles
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.
We encourage you to download the current phpdocx version and check the Documentation available.

Posted by wadmiraal  · 16-02-2018 - 11:18

Hi, if I use the following:

// Default styles.
$style = array(
  'fontSize' => 18,
  'font' => 'Verdana',
  'lineSpacing' => 240,
  'spacingTop' => 0,
  'spacingBottom' => 0,
);

$docx->createParagraphStyle('h1', array(
  'bold' => TRUE,
  'color' => '006283',
  'caps' => TRUE,
  'pageBreakBefore' => TRUE,
) + $style);

$docx->addHeading("My heading", 1, array('pStyle' => "h1"));

It doesn't apply the font size, nor the font family. The other styles are applied. 

Why? If I pass the fontSize and font parameters to the options array directly, it works (although I would have to divide the font size by 2). Why?