コード例 #1
0
ファイル: Cell.php プロジェクト: brunodebarros/phpword
 /**
  * Get background
  *
  * @return string
  */
 public function getBgColor()
 {
     if ($this->shading !== null) {
         return $this->shading->getFill();
     } else {
         return null;
     }
 }
コード例 #2
0
ファイル: Font.php プロジェクト: kaantunc/MYK-BOR
 /**
  * Get background
  *
  * @return string
  */
 public function getBgColor()
 {
     if (!is_null($this->shading)) {
         return $this->shading->getFill();
     }
 }