style instanceof \PhpOffice\PhpWord\Style\Spacing)) { return; } $this->xmlWriter->startElement('w:spacing'); if (!is_null($this->style->getBefore())) { $this->xmlWriter->writeAttribute('w:before', $this->convertTwip($this->style->getBefore())); } if (!is_null($this->style->getAfter())) { $this->xmlWriter->writeAttribute('w:after', $this->convertTwip($this->style->getAfter())); } if (!is_null($this->style->getLine())) { $this->xmlWriter->writeAttribute('w:line', $this->style->getLine()); $this->xmlWriter->writeAttribute('w:lineRule', $this->style->getRule()); } $this->xmlWriter->endElement(); } }