PhpOffice\PhpPresentation\Shape\Chart\Gridlines::getOutline PHP Method

getOutline() public method

public getOutline ( ) : Outline
return PhpOffice\PhpPresentation\Style\Outline
    public function getOutline()
    {
        return $this->outline;
    }

Usage Example

 public function testGetSetOutline()
 {
     $object = new Gridlines();
     $oStub = $this->getMock('PhpOffice\\PhpPresentation\\Style\\Outline');
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Outline', $object->getOutline());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Gridlines', $object->setOutline($oStub));
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Outline', $object->getOutline());
 }
All Usage Examples Of PhpOffice\PhpPresentation\Shape\Chart\Gridlines::getOutline