Prado\Web\UI\WebControls\TTableItemStyle::_getZappableSleepProps PHP Метод

_getZappableSleepProps() защищенный Метод

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->_horizontalAlign === null) {
            $exprops[] = "TTableItemStyle_horizontalAlign";
        }
        if ($this->_verticalAlign === null) {
            $exprops[] = "TTableItemStyle_verticalAlign";
        }
        if ($this->_wrap === null) {
            $exprops[] = "TTableItemStyle_wrap";
        }
    }