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


PHP PHPExcel_Style_Supervisor类代码示例

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


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

示例1: __construct

 /**
  * Create a new PHPExcel_Style_Color
  *
  * @param	string	$pARGB			ARGB value for the colour
  * @param	boolean	$isSupervisor	Flag indicating if this is a supervisor or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  * @param	boolean	$isConditional	Flag indicating if this is a conditional style or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  */
 public function __construct($pARGB = PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor = FALSE, $isConditional = FALSE)
 {
     //	Supervisor?
     parent::__construct($isSupervisor);
     //	Initialise values
     if (!$isConditional) {
         $this->_argb = $pARGB;
     }
 }
开发者ID:sirpapy,项目名称:Projet-Tuteur--LIGM,代码行数:20,代码来源:Color.php

示例2: __construct

 /**
  * Create a new PHPExcel_Style_Protection
  *
  * @param	boolean	$isSupervisor	Flag indicating if this is a supervisor or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  * @param	boolean	$isConditional	Flag indicating if this is a conditional style or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  */
 public function __construct($isSupervisor = FALSE, $isConditional = FALSE)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     // Initialise values
     if (!$isConditional) {
         $this->_locked = self::PROTECTION_INHERIT;
         $this->_hidden = self::PROTECTION_INHERIT;
     }
 }
开发者ID:ljhchshm,项目名称:weixin,代码行数:20,代码来源:Protection.php

示例3: __construct

 /**
  * Create a new PHPExcel_Style_Border
  *
  * @param	boolean	$isSupervisor	Flag indicating if this is a supervisor or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  * @param	boolean	$isConditional	Flag indicating if this is a conditional style or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  */
 public function __construct($isSupervisor = FALSE, $isConditional = FALSE)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     // Initialise values
     $this->_color = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor);
     // bind parent if we are a supervisor
     if ($isSupervisor) {
         $this->_color->bindParent($this, '_color');
     }
 }
开发者ID:ljhchshm,项目名称:weixin,代码行数:21,代码来源:Border.php

示例4: __construct

 /**
  * Create a new PHPExcel_Style_Alignment
  *
  * @param	boolean	$isSupervisor	Flag indicating if this is a supervisor or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  * @param	boolean	$isConditional	Flag indicating if this is a conditional style or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  */
 public function __construct($isSupervisor = FALSE, $isConditional = FALSE)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     if ($isConditional) {
         $this->_horizontal = NULL;
         $this->_vertical = NULL;
         $this->_textRotation = NULL;
     }
 }
开发者ID:adit-gudhel,项目名称:simpus-dev,代码行数:20,代码来源:Alignment.php

示例5: __construct

 /**
  * Create a new PHPExcel_Style_NumberFormat
  *
  * @param	boolean	$isSupervisor	Flag indicating if this is a supervisor or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  * @param	boolean	$isConditional	Flag indicating if this is a conditional style or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  */
 public function __construct($isSupervisor = FALSE, $isConditional = FALSE)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     if ($isConditional) {
         $this->_formatCode = NULL;
     }
 }
开发者ID:YellowYellow,项目名称:Graduation-Project,代码行数:18,代码来源:NumberFormat.php

示例6: __construct

 /**
  * Create a new PHPExcel_Style_Font
  *
  * @param	boolean	$isSupervisor	Flag indicating if this is a supervisor or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  * @param	boolean	$isConditional	Flag indicating if this is a conditional style or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  */
 public function __construct($isSupervisor = FALSE, $isConditional = FALSE)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     // Initialise values
     if ($isConditional) {
         $this->_name = NULL;
         $this->_size = NULL;
         $this->_bold = NULL;
         $this->_italic = NULL;
         $this->_superScript = NULL;
         $this->_subScript = NULL;
         $this->_underline = NULL;
         $this->_strikethrough = NULL;
         $this->_color = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor, $isConditional);
     } else {
         $this->_color = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor);
     }
     // bind parent if we are a supervisor
     if ($isSupervisor) {
         $this->_color->bindParent($this, '_color');
     }
 }
开发者ID:ljhchshm,项目名称:weixin,代码行数:33,代码来源:Font.php

示例7: __construct

 /**
  * Create a new PHPExcel_Style_Fill
  *
  * @param	boolean	$isSupervisor	Flag indicating if this is a supervisor or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  * @param	boolean	$isConditional	Flag indicating if this is a conditional style or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  */
 public function __construct($isSupervisor = FALSE, $isConditional = FALSE)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     // Initialise values
     if ($isConditional) {
         $this->_fillType = NULL;
     }
     $this->_startColor = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_WHITE, $isSupervisor, $isConditional);
     $this->_endColor = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor, $isConditional);
     // bind parent if we are a supervisor
     if ($isSupervisor) {
         $this->_startColor->bindParent($this, '_startColor');
         $this->_endColor->bindParent($this, '_endColor');
     }
 }
开发者ID:xVirusproj3ct,项目名称:site_web_phf,代码行数:26,代码来源:Fill.php

示例8: __construct

 /**
  * Create a new PHPExcel_Style_Borders
  *
  * @param    boolean    $isSupervisor    Flag indicating if this is a supervisor or not
  *                                    Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  * @param    boolean    $isConditional    Flag indicating if this is a conditional style or not
  *                                    Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  */
 public function __construct($isSupervisor = false, $isConditional = false)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     // Initialise values
     $this->left = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->right = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->top = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->bottom = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->diagonal = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->diagonalDirection = PHPExcel_Style_Borders::DIAGONAL_NONE;
     // Specially for supervisor
     if ($isSupervisor) {
         // Initialize pseudo-borders
         $this->allBorders = new PHPExcel_Style_Border(true);
         $this->outline = new PHPExcel_Style_Border(true);
         $this->inside = new PHPExcel_Style_Border(true);
         $this->vertical = new PHPExcel_Style_Border(true);
         $this->horizontal = new PHPExcel_Style_Border(true);
         // bind parent if we are a supervisor
         $this->left->bindParent($this, 'left');
         $this->right->bindParent($this, 'right');
         $this->top->bindParent($this, 'top');
         $this->bottom->bindParent($this, 'bottom');
         $this->diagonal->bindParent($this, 'diagonal');
         $this->allBorders->bindParent($this, 'allBorders');
         $this->outline->bindParent($this, 'outline');
         $this->inside->bindParent($this, 'inside');
         $this->vertical->bindParent($this, 'vertical');
         $this->horizontal->bindParent($this, 'horizontal');
     }
 }
开发者ID:alyayazilim,项目名称:E-Ticaret-2015,代码行数:42,代码来源:Borders.php

示例9: __construct

 /**
  * Create a new PHPExcel_Style_Borders
  *
  * @param	boolean	$isSupervisor	Flag indicating if this is a supervisor or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  * @param	boolean	$isConditional	Flag indicating if this is a conditional style or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  */
 public function __construct($isSupervisor = FALSE, $isConditional = FALSE)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     // Initialise values
     $this->_left = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->_right = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->_top = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->_bottom = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->_diagonal = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->_diagonalDirection = PHPExcel_Style_Borders::DIAGONAL_NONE;
     // Specially for supervisor
     if ($isSupervisor) {
         // Initialize pseudo-borders
         $this->_allBorders = new PHPExcel_Style_Border(TRUE);
         $this->_outline = new PHPExcel_Style_Border(TRUE);
         $this->_inside = new PHPExcel_Style_Border(TRUE);
         $this->_vertical = new PHPExcel_Style_Border(TRUE);
         $this->_horizontal = new PHPExcel_Style_Border(TRUE);
         // bind parent if we are a supervisor
         $this->_left->bindParent($this, '_left');
         $this->_right->bindParent($this, '_right');
         $this->_top->bindParent($this, '_top');
         $this->_bottom->bindParent($this, '_bottom');
         $this->_diagonal->bindParent($this, '_diagonal');
         $this->_allBorders->bindParent($this, '_allBorders');
         $this->_outline->bindParent($this, '_outline');
         $this->_inside->bindParent($this, '_inside');
         $this->_vertical->bindParent($this, '_vertical');
         $this->_horizontal->bindParent($this, '_horizontal');
     }
 }
开发者ID:ljhchshm,项目名称:weixin,代码行数:42,代码来源:Borders.php

示例10: __construct

 /**
  * Create a new PHPExcel_Style_Alignment
  *
  * @param    boolean $isSupervisor        Flag indicating if this is a supervisor or not
  *                                        Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  * @param    boolean $isConditional       Flag indicating if this is a conditional style or not
  *                                        Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  */
 public function __construct($isSupervisor = false, $isConditional = false)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     if ($isConditional) {
         $this->_horizontal = null;
         $this->_vertical = null;
         $this->_textRotation = null;
     }
 }
开发者ID:BozzaCoon,项目名称:SPHERE-Framework,代码行数:20,代码来源:Alignment.php

示例11: __construct

 /**
  * Create a new PHPExcel_Style_Font
  *
  * @param    boolean    $isSupervisor    Flag indicating if this is a supervisor or not
  *                                    Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  * @param    boolean    $isConditional    Flag indicating if this is a conditional style or not
  *                                    Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  */
 public function __construct($isSupervisor = false, $isConditional = false)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     // Initialise values
     if ($isConditional) {
         $this->name = null;
         $this->size = null;
         $this->bold = null;
         $this->italic = null;
         $this->superScript = null;
         $this->subScript = null;
         $this->underline = null;
         $this->strikethrough = null;
         $this->color = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor, $isConditional);
     } else {
         $this->color = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor);
     }
     // bind parent if we are a supervisor
     if ($isSupervisor) {
         $this->color->bindParent($this, 'color');
     }
 }
开发者ID:alyayazilim,项目名称:E-Ticaret-2015,代码行数:33,代码来源:Font.php

示例12: __construct

 /**
  * Create a new PHPExcel_Style_NumberFormat
  *
  * @param    boolean $isSupervisor        Flag indicating if this is a supervisor or not
  *                                        Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  * @param    boolean $isConditional       Flag indicating if this is a conditional style or not
  *                                        Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  */
 public function __construct($isSupervisor = false, $isConditional = false)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     if ($isConditional) {
         $this->_formatCode = null;
     }
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:18,代码来源:NumberFormat.php

示例13: __construct

 /**
  * Create a new PHPExcel_Style_Fill
  *
  * @param    boolean    $isSupervisor    Flag indicating if this is a supervisor or not
  *                                    Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  * @param    boolean    $isConditional    Flag indicating if this is a conditional style or not
  *                                    Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  */
 public function __construct($isSupervisor = false, $isConditional = false)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     // Initialise values
     if ($isConditional) {
         $this->fillType = null;
     }
     $this->startColor = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_WHITE, $isSupervisor, $isConditional);
     $this->endColor = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor, $isConditional);
     // bind parent if we are a supervisor
     if ($isSupervisor) {
         $this->startColor->bindParent($this, 'startColor');
         $this->endColor->bindParent($this, 'endColor');
     }
 }
开发者ID:oalkhanishvili,项目名称:track2,代码行数:26,代码来源:Fill.php


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