I am currently using PHPWord to generate my documents, but I want to add an horizontal line in the document. Just like an
Does anybody have more information about this feature?
Thank you!
I decompressed the '.docx' file, found closest xml tag is 'w:pBdr'.
<w:pBdr><w:bottom w:val="single" w:sz="6" w:space="0" w:color="auto"/></w:pBdr>
So, I insert a horizontal line by ParagraphStyle.
$section->addText('', [], ['borderBottomSize' => 6]);