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

getCellSpacing() public method

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