Prado\Web\UI\WebControls\TDataList::getRepeatInfo PHP Method

getRepeatInfo() protected method

protected getRepeatInfo ( ) : TRepeatInfo
return TRepeatInfo repeat information (primarily used by control developers)
    protected function getRepeatInfo()
    {
        if (($repeatInfo = $this->getViewState('RepeatInfo', null)) === null) {
            $repeatInfo = new TRepeatInfo();
            $this->setViewState('RepeatInfo', $repeatInfo, null);
        }
        return $repeatInfo;
    }
TDataList