Prado\Web\UI\WebControls\TTableRow::getVerticalAlign PHP 메소드

getVerticalAlign() 공개 메소드

public getVerticalAlign ( ) : string
리턴 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';
        }
    }