Prado\Web\UI\WebControls\TTableCell::getHorizontalAlign PHP Method

getHorizontalAlign() public method

public getHorizontalAlign ( ) : string
return string the horizontal alignment of the contents within the table item, defaults to 'NotSet'.
    public function getHorizontalAlign()
    {
        if ($this->getHasStyle()) {
            return $this->getStyle()->getHorizontalAlign();
        } else {
            return 'NotSet';
        }
    }