You are here

public function PHPExcel_Style_Alignment::getVertical in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Alignment.php \PHPExcel_Style_Alignment::getVertical()

* Get Vertical * *

Return value

string

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Alignment.php, line 243

Class

PHPExcel_Style_Alignment
PHPExcel_Style_Alignment

Code

public function getVertical() {
  if ($this->_isSupervisor) {
    return $this
      ->getSharedComponent()
      ->getVertical();
  }
  return $this->_vertical;
}