Prado\Web\UI\WebControls\TDataGrid::getTableBodyStyle PHP Méthode

getTableBodyStyle() public méthode

Since: 3.1.1
public getTableBodyStyle ( ) : TStyle
Résultat 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;
    }