PhpOffice\PhpPresentation\Shape\Chart\Axis::getMajorGridlines PHP Метод

getMajorGridlines() публичный Метод

public getMajorGridlines ( ) : Gridlines
Результат Gridlines
    public function getMajorGridlines()
    {
        return $this->majorGridlines;
    }

Usage Example

Пример #1
0
 public function testGridLines()
 {
     $object = new Axis();
     $oMock = $this->getMock('PhpOffice\\PhpPresentation\\Shape\\Chart\\Gridlines');
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Axis', $object->setMajorGridlines($oMock));
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Gridlines', $object->getMajorGridlines());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Axis', $object->setMinorGridlines($oMock));
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Gridlines', $object->getMinorGridlines());
 }
All Usage Examples Of PhpOffice\PhpPresentation\Shape\Chart\Axis::getMajorGridlines