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

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

Get Title
public getTitle ( ) : string
Результат string
    public function getTitle()
    {
        return $this->title;
    }

Usage Example

Пример #1
0
 public function testTitle()
 {
     $object = new Axis();
     $this->assertEquals('Axis Title', $object->getTitle());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Axis', $object->setTitle('AAAA'));
     $this->assertEquals('AAAA', $object->getTitle());
 }
All Usage Examples Of PhpOffice\PhpPresentation\Shape\Chart\Axis::getTitle