PhpOffice\PhpPresentation\Slide::setNote PHP Method

setNote() public method

public setNote ( PhpOffice\PhpPresentation\Slide\Note $note = null ) : Slide
$note PhpOffice\PhpPresentation\Slide\Note
return Slide
    public function setNote(Note $note = null)
    {
        $this->slideNote = is_null($note) ? new Note() : $note;
        $this->slideNote->setParent($this);
        return $this;
    }