PHPRtfLite::getFontTable PHP Method

getFontTable() public method

gets font table
public getFontTable ( ) : PHPRtfLite_DocHead_FontTable
return PHPRtfLite_DocHead_FontTable
    public function getFontTable()
    {
        if ($this->_fontTable === null) {
            $this->_fontTable = new PHPRtfLite_DocHead_FontTable();
        }
        return $this->_fontTable;
    }