Prado\Web\UI\WebControls\TFont::_getZappableSleepProps PHP Method

_getZappableSleepProps() protected method

Reimplement in derived classes to add new variables, but remember to also to call the parent implementation first.
protected _getZappableSleepProps ( &$exprops )
    protected function _getZappableSleepProps(&$exprops)
    {
        parent::_getZappableSleepProps($exprops);
        if ($this->_flags === 0) {
            $exprops[] = "TFont_flags";
        }
        if ($this->_name === '') {
            $exprops[] = "TFont_name";
        }
        if ($this->_size === '') {
            $exprops[] = "TFont_size";
        }
    }