PhpOffice\PhpPresentation\Shape\RichText::getAutoFit PHP Метод

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

Get autofit
public getAutoFit ( ) : string
Результат string
    public function getAutoFit()
    {
        return $this->autoFit;
    }

Usage Example

Пример #1
0
 public function testGetSetAutoFit()
 {
     $object = new RichText();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\RichText', $object->setAutoFit());
     $this->assertEquals(RichText::AUTOFIT_DEFAULT, $object->getAutoFit());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\RichText', $object->setAutoFit(RichText::AUTOFIT_NORMAL));
     $this->assertEquals(RichText::AUTOFIT_NORMAL, $object->getAutoFit());
 }