Exemple #1
0
 /**
  *
  * @param \PhpOffice\PhpPresentation\Slide\Note $note
  * @return \PhpOffice\PhpPresentation\Slide
  */
 public function setNote(Note $note = null)
 {
     $this->slideNote = is_null($note) ? new Note() : $note;
     $this->slideNote->setParent($this);
     return $this;
 }