Prado\Collections\TPagedList::itemAt PHP Метод

itemAt() публичный Метод

This method is exactly the same as {@link offsetGet}.
public itemAt ( $index ) : mixed
Результат mixed the item at the index
    public function itemAt($index)
    {
        if ($this->_customPaging) {
            return parent::itemAt($index);
        } else {
            return parent::itemAt($this->_pageSize * $this->_currentPageIndex + $index);
        }
    }