PHPRtfLite::getNoteDocHead PHP 메소드

getNoteDocHead() 공개 메소드

gets document head definition for notes
public getNoteDocHead ( ) : PHPRtfLite_DocHead_Note
리턴 PHPRtfLite_DocHead_Note
    public function getNoteDocHead()
    {
        if ($this->_noteDocHead === null) {
            $this->_noteDocHead = new PHPRtfLite_DocHead_Note();
        }
        return $this->_noteDocHead;
    }