Add background color support for text boxes for Word writer

This commit is contained in:
Erik Hazington 2022-12-30 21:34:47 +01:00 committed by GitHub
parent 1dc3dc6ce5
commit 25575c80ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,6 +50,9 @@ class TextBox extends Image
$xmlWriter->startElement('v:shape');
$xmlWriter->writeAttribute('type', '#_x0000_t0202');
if ($style->getBgColor()) {
$xmlWriter->writeAttribute('fillcolor', $style->getBgColor());
}
$styleWriter->write();
$styleWriter->writeBorder();