PHPRtfLite::getNoteDocHead PHP Méthode

getNoteDocHead() public méthode

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