Prado\Web\UI\WebControls\TDataGrid::getFooterStyle PHP 메소드

getFooterStyle() 공개 메소드

public getFooterStyle ( ) : TTableItemStyle
리턴 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;
    }