setAutoFit() public method

Set autofit
public setAutoFit ( $value = self::AUTOFIT_DEFAULT, $fontScale = null, $lnSpcReduction = null ) : RichText
$value string
$fontScale float
$lnSpcReduction float
return RichText
Ejemplo n.º 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());
 }