setAutoShrinkHorizontal() public method

Set horizontal auto shrink
public setAutoShrinkHorizontal ( boolean $value = null )
$value boolean
Ejemplo n.º 1
0
 public function testGetSetHAutoShrink()
 {
     $object = new RichText();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\RichText', $object->setAutoShrinkHorizontal());
     $this->assertNull($object->hasAutoShrinkHorizontal());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\RichText', $object->setAutoShrinkHorizontal(2));
     $this->assertNull($object->hasAutoShrinkHorizontal());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\RichText', $object->setAutoShrinkHorizontal(true));
     $this->assertTrue($object->hasAutoShrinkHorizontal());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\RichText', $object->setAutoShrinkHorizontal(false));
     $this->assertFalse($object->hasAutoShrinkHorizontal());
 }