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

getVerticalAlign() public method

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