Prado\Web\UI\WebControls\TBaseDataList::getGridLines PHP Method

getGridLines() public method

public getGridLines ( ) : TTableGridLines
return TTableGridLines the grid line setting of the table layout. Defaults to TTableGridLines::None.
    public function getGridLines()
    {
        if ($this->getHasStyle()) {
            return $this->getStyle()->getGridLines();
        } else {
            return TTableGridLines::None;
        }
    }