Prado\Web\UI\WebControls\TDataGrid::getTableFootStyle PHP Method

getTableFootStyle() public method

Since: 3.1.1
public getTableFootStyle ( ) : TStyle
return TStyle the style for tfoot element, if any
    public function getTableFootStyle()
    {
        if (($style = $this->getViewState('TableFootStyle', null)) === null) {
            $style = new TStyle();
            $this->setViewState('TableFootStyle', $style, null);
        }
        return $style;
    }