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

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

Get View3D
public getView3D ( ) : PhpOffice\PhpPresentation\Shape\Chart\View3D
Результат PhpOffice\PhpPresentation\Shape\Chart\View3D
    public function getView3D()
    {
        return $this->view3D;
    }

Usage Example

Пример #1
0
 public function testConstruct()
 {
     $object = new Chart();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Title', $object->getTitle());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Legend', $object->getLegend());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\PlotArea', $object->getPlotArea());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\View3D', $object->getView3D());
 }
All Usage Examples Of PhpOffice\PhpPresentation\Shape\Chart::getView3D