当前位置: 首页>>代码示例>>PHP>>正文


PHP PHPExcel_Style_Fill类代码示例

本文整理汇总了PHP中PHPExcel_Style_Fill的典型用法代码示例。如果您正苦于以下问题:PHP PHPExcel_Style_Fill类的具体用法?PHP PHPExcel_Style_Fill怎么用?PHP PHPExcel_Style_Fill使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了PHPExcel_Style_Fill类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 /**
  * Create a new PHPExcel_Style
  *
  * @param boolean $isSupervisor
  */
 public function __construct($isSupervisor = false)
 {
     // Supervisor?
     $this->_isSupervisor = $isSupervisor;
     // Initialise values
     $this->_conditionalStyles = array();
     $this->_font = new PHPExcel_Style_Font($isSupervisor);
     $this->_fill = new PHPExcel_Style_Fill($isSupervisor);
     $this->_borders = new PHPExcel_Style_Borders($isSupervisor);
     $this->_alignment = new PHPExcel_Style_Alignment($isSupervisor);
     $this->_numberFormat = new PHPExcel_Style_NumberFormat($isSupervisor);
     $this->_protection = new PHPExcel_Style_Protection($isSupervisor);
     // bind parent if we are a supervisor
     if ($isSupervisor) {
         $this->_font->bindParent($this);
         $this->_fill->bindParent($this);
         $this->_borders->bindParent($this);
         $this->_alignment->bindParent($this);
         $this->_numberFormat->bindParent($this);
         $this->_protection->bindParent($this);
     }
 }
开发者ID:otkinlife,项目名称:MyPhalcon,代码行数:27,代码来源:Style.php

示例2: _createCSSStyleFill

 /**
  * Create CSS style (PHPExcel_Style_Fill)
  *
  * @param	PHPExcel_Style_Fill		$pStyle			PHPExcel_Style_Fill
  * @return	array
  */
 private function _createCSSStyleFill(PHPExcel_Style_Fill $pStyle)
 {
     // Construct HTML
     $css = array();
     // Create CSS
     $value = $pStyle->getFillType() == PHPExcel_Style_Fill::FILL_NONE ? 'white' : '#' . $pStyle->getStartColor()->getRGB();
     $css['background-color'] = $value;
     // Return
     return $css;
 }
开发者ID:adit-gudhel,项目名称:simpus-dev,代码行数:16,代码来源:HTML.php

示例3: allFills

 /**
  * Get an array of all fills
  *
  * @param 	PHPExcel						$pPHPExcel
  * @return 	PHPExcel_Style_Fill[]		All fills in PHPExcel
  * @throws 	Exception
  */
 public function allFills(PHPExcel $pPHPExcel = null)
 {
     // Get an array of unique fills
     $aFills = array();
     // Two first fills are predefined
     $fill0 = new PHPExcel_Style_Fill();
     $fill0->setFillType(PHPExcel_Style_Fill::FILL_NONE);
     $aFills[] = $fill0;
     $fill1 = new PHPExcel_Style_Fill();
     $fill1->setFillType(PHPExcel_Style_Fill::FILL_PATTERN_GRAY125);
     $aFills[] = $fill1;
     // The remaining fills
     $aStyles = $this->allStyles($pPHPExcel);
     foreach ($aStyles as $style) {
         if (!array_key_exists($style->getFill()->getHashCode(), $aFills)) {
             $aFills[$style->getFill()->getHashCode()] = $style->getFill();
         }
     }
     return $aFills;
 }
开发者ID:echoOly,项目名称:php_base,代码行数:27,代码来源:Style.php

示例4: getFill

 /**
  * Get Fill
  *
  * @return PHPExcel_Style_Fill
  */
 public function getFill()
 {
     if (isset($this->_fill)) {
         return $this->_fill;
     }
     $property = new PHPExcel_Style_Fill();
     $property->propertyPrepareBind($this, "_fill");
     return $property;
 }
开发者ID:quantrocket,项目名称:planlogiq,代码行数:14,代码来源:Style.php

示例5: _writePatternFill

 /**
  * Write Pattern Fill
  *
  * @param 	PHPExcel_Shared_XMLWriter			$objWriter 		XML Writer
  * @param 	PHPExcel_Style_Fill					$pFill			Fill style
  * @throws 	Exception
  */
 private function _writePatternFill(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Style_Fill $pFill = null)
 {
     // fill
     $objWriter->startElement('fill');
     // patternFill
     $objWriter->startElement('patternFill');
     $objWriter->writeAttribute('patternType', $pFill->getFillType());
     // fgColor
     $objWriter->startElement('fgColor');
     $objWriter->writeAttribute('rgb', $pFill->getStartColor()->getARGB());
     $objWriter->endElement();
     // bgColor
     $objWriter->startElement('bgColor');
     $objWriter->writeAttribute('rgb', $pFill->getEndColor()->getARGB());
     $objWriter->endElement();
     $objWriter->endElement();
     $objWriter->endElement();
 }
开发者ID:TiMoChao,项目名称:xingfu,代码行数:25,代码来源:Style.php

示例6: _createCSSStyleFill

 /**
  * Create CSS style (PHPExcel_Style_Fill)
  * 
  * @param	PHPExcel_Style_Fill		$pStyle			PHPExcel_Style_Fill
  * @return	string
  */
 private function _createCSSStyleFill(PHPExcel_Style_Fill $pStyle)
 {
     // Construct HTML
     $html = '';
     // Create CSS
     $html .= '        background-color: ' . '#' . $pStyle->getStartColor()->getRGB() . ';' . "\r\n";
     // Return
     return $html;
 }
开发者ID:laiello,项目名称:myopensources,代码行数:15,代码来源:HTML.php

示例7: _writePatternFill

 /**
  * Write Pattern Fill
  *
  * @param 	PHPExcel_Shared_XMLWriter			$objWriter 		XML Writer
  * @param 	PHPExcel_Style_Fill					$pFill			Fill style
  * @throws 	Exception
  */
 private function _writePatternFill(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Style_Fill $pFill = null)
 {
     // fill
     $objWriter->startElement('fill');
     // patternFill
     $objWriter->startElement('patternFill');
     $objWriter->writeAttribute('patternType', $pFill->getFillType());
     // If no fill is selected, there is no need for color information
     if ($pFill->getFillType() != 'none') {
         // fgColor
         $objWriter->startElement('fgColor');
         $objWriter->writeAttribute('rgb', $pFill->getStartColor()->getARGB());
         $objWriter->endElement();
         // bgColor
         $objWriter->startElement('bgColor');
         $objWriter->writeAttribute('rgb', $pFill->getEndColor()->getARGB());
         $objWriter->endElement();
     }
     $objWriter->endElement();
     $objWriter->endElement();
 }
开发者ID:hostellerie,项目名称:nexpro,代码行数:28,代码来源:Style.php

示例8: getHashCode

 /**
  * Get hash code
  *
  * @return string Hash code
  */
 public function getHashCode()
 {
     $hashConditionals = '';
     foreach ($this->conditionalStyles as $conditional) {
         $hashConditionals .= $conditional->getHashCode();
     }
     return md5($this->fill->getHashCode() . $this->font->getHashCode() . $this->borders->getHashCode() . $this->alignment->getHashCode() . $this->numberFormat->getHashCode() . $hashConditionals . $this->protection->getHashCode() . ($this->quotePrefix ? 't' : 'f') . __CLASS__);
 }
开发者ID:Princelo,项目名称:bioerp,代码行数:13,代码来源:Style.php

示例9: getHashCode

 /**
  * Get hash code
  *
  * @return string	Hash code
  */
 public function getHashCode()
 {
     $hashConditionals = '';
     foreach ($this->_conditionalStyles as $conditional) {
         $hashConditionals .= $conditional->getHashCode();
     }
     return md5($this->_fill->getHashCode() . $this->_font->getHashCode() . $this->_borders->getHashCode() . $this->_alignment->getHashCode() . $this->_numberFormat->getHashCode() . $hashConditionals . $this->_protection->getHashCode() . __CLASS__);
 }
开发者ID:laiello,项目名称:myopensources,代码行数:13,代码来源:Style.php


注:本文中的PHPExcel_Style_Fill类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。