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

getCellPadding() public method

public getCellPadding ( ) : integer
return integer the cellpadding for the table layout. Defaults to -1, meaning not set.
    public function getCellPadding()
    {
        if ($this->getHasStyle()) {
            return $this->getStyle()->getCellPadding();
        } else {
            return -1;
        }
    }