PhpOffice\PhpPresentation\Writer\PowerPoint2007\AbstractDecoratorWriter::writeSolidFill PHP Method

writeSolidFill() protected method

Write Solid Fill
protected writeSolidFill ( PhpOffice\Common\XMLWriter $objWriter, PhpOffice\PhpPresentation\Style\Fill $pFill )
$objWriter PhpOffice\Common\XMLWriter XML Writer
$pFill PhpOffice\PhpPresentation\Style\Fill Fill style
    protected function writeSolidFill(XMLWriter $objWriter, Fill $pFill)
    {
        // a:gradFill
        $objWriter->startElement('a:solidFill');
        $this->writeColor($objWriter, $pFill->getStartColor());
        $objWriter->endElement();
    }