setLayoutPack() public méthode

Set layout pack to use
Deprecation: 0.7
public setLayoutPack ( AbstractLayoutPack $pValue = null ) : PowerPoint2007
$pValue PhpOffice\PhpPresentation\Writer\PowerPoint2007\LayoutPack\AbstractLayoutPack
Résultat PowerPoint2007
 /**
  * Test LayoutPack
  * @deprecated 0.7
  */
 public function testLayoutPack()
 {
     $oLayoutPack = $this->getMock('PhpOffice\\PhpPresentation\\Writer\\PowerPoint2007\\LayoutPack\\AbstractLayoutPack');
     $object = new PowerPoint2007();
     $this->assertInstanceOf("PhpOffice\\PhpPresentation\\Writer\\PowerPoint2007\\LayoutPack\\AbstractLayoutPack", $object->getLayoutPack());
     $this->assertInstanceOf("PhpOffice\\PhpPresentation\\Writer\\PowerPoint2007", $object->setLayoutPack());
     $this->assertNull($object->getLayoutPack());
     $this->assertInstanceOf("PhpOffice\\PhpPresentation\\Writer\\PowerPoint2007", $object->setLayoutPack($oLayoutPack));
     $this->assertInstanceOf("PhpOffice\\PhpPresentation\\Writer\\PowerPoint2007\\LayoutPack\\AbstractLayoutPack", $object->getLayoutPack());
 }