コード例 #1
0
ファイル: Style.php プロジェクト: quantrocket/planlogiq
 /**
  * Get Font
  *
  * @return PHPExcel_Style_Font
  */
 public function getFont()
 {
     if (isset($this->_font)) {
         return $this->_font;
     }
     $property = new PHPExcel_Style_Font();
     $property->propertyPrepareBind($this, "_font");
     return $property;
 }