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

getTableBodyStyle() public method

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