Prado\Web\UI\WebControls\TDataGridPagerStyle::_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->_mode === null) {
            $exprops[] = "TDataGridPagerStyle_mode";
        }
        if ($this->_nextText === null) {
            $exprops[] = "TDataGridPagerStyle_nextText";
        }
        if ($this->_prevText === null) {
            $exprops[] = "TDataGridPagerStyle_prevText";
        }
        if ($this->_firstText === null) {
            $exprops[] = "TDataGridPagerStyle_firstText";
        }
        if ($this->_lastText === null) {
            $exprops[] = "TDataGridPagerStyle_lastText";
        }
        if ($this->_buttonCount === null) {
            $exprops[] = "TDataGridPagerStyle_buttonCount";
        }
        if ($this->_position === null) {
            $exprops[] = "TDataGridPagerStyle_position";
        }
        if ($this->_visible === null) {
            $exprops[] = "TDataGridPagerStyle_visible";
        }
        if ($this->_buttonType === null) {
            $exprops[] = "TDataGridPagerStyle_buttonType";
        }
    }