PhpOffice\PhpPresentation\Style\Outline::getFill PHP Method

getFill() public method

public getFill ( ) : PhpOffice\PhpPresentation\Style\Fill
return PhpOffice\PhpPresentation\Style\Fill
    public function getFill()
    {
        return $this->fill;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * Test get/set fill
  */
 public function testSetGetFill()
 {
     $object = new Outline();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Fill', $object->getFill());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Outline', $object->setFill(new Fill()));
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Fill', $object->getFill());
 }
All Usage Examples Of PhpOffice\PhpPresentation\Style\Outline::getFill