PhpOffice\PhpPresentation\Shape\Chart\Axis::getMinorGridlines PHP Method

getMinorGridlines() public method

public getMinorGridlines ( ) : Gridlines
return Gridlines
    public function getMinorGridlines()
    {
        return $this->minorGridlines;
    }

Usage Example

コード例 #1
0
ファイル: AxisTest.php プロジェクト: phpoffice/phppowerpoint
 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::getMinorGridlines