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

getFooterStyle() public method

public getFooterStyle ( ) : TTableItemStyle
return TTableItemStyle the style for footer
    public function getFooterStyle()
    {
        if (($style = $this->getViewState('FooterStyle', null)) === null) {
            $style = new TTableItemStyle();
            $this->setViewState('FooterStyle', $style, null);
        }
        return $style;
    }
TDataList