本文整理汇总了PHP中PHPExcel_Style_Borders::getBottom方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPExcel_Style_Borders::getBottom方法的具体用法?PHP PHPExcel_Style_Borders::getBottom怎么用?PHP PHPExcel_Style_Borders::getBottom使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPExcel_Style_Borders
的用法示例。
在下文中一共展示了PHPExcel_Style_Borders::getBottom方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: propertyBeginBind
/**
* Property Begin Bind
*
* If no PHPExcel_Style_Border has been bound to PHPExcel_Style_Borders then bind this one. Return the actual bound one.
*
* @return PHPExcel_Style_Border
*/
private function propertyBeginBind()
{
if (!isset($this->_parent)) {
return $this;
}
// I am already bound
if ($this->_parent->propertyIsBound($this->_parentPropertyName)) {
switch ($this->_parentPropertyName) {
case "_left":
return $this->_parent->getLeft();
case "_right":
return $this->_parent->getRight();
case "_top":
return $this->_parent->getTop();
case "_bottom":
return $this->_parent->getBottom();
case "_diagonal":
return $this->_parent->getDiagonal();
case "_vertical":
return $this->_parent->getVertical();
case "_horizontal":
return $this->_parent->getHorizontal();
}
}
$this->_parent->propertyCompleteBind($this, $this->_parentPropertyName);
// Bind myself
$this->_parent = null;
return $this;
}
示例2: _createCSSStyleBorders
/**
* Create CSS style (PHPExcel_Style_Borders)
*
* @param PHPExcel_Style_Borders $pStyle PHPExcel_Style_Borders
* @return array
*/
private function _createCSSStyleBorders(PHPExcel_Style_Borders $pStyle)
{
// Construct CSS
$css = array();
// Create CSS
$css['border-bottom'] = $this->_createCSSStyleBorder($pStyle->getBottom());
$css['border-top'] = $this->_createCSSStyleBorder($pStyle->getTop());
$css['border-left'] = $this->_createCSSStyleBorder($pStyle->getLeft());
$css['border-right'] = $this->_createCSSStyleBorder($pStyle->getRight());
// Return
return $css;
}
示例3: _writeBorder
/**
* Write Border
*
* @param PHPExcel_Shared_XMLWriter $objWriter XML Writer
* @param PHPExcel_Style_Borders $pBorders Borders style
* @throws Exception
*/
private function _writeBorder(PHPExcel_Shared_XMLWriter $objWriter = null, PHPExcel_Style_Borders $pBorders = null)
{
// Write border
$objWriter->startElement('border');
// Diagonal?
switch ($pBorders->getDiagonalDirection()) {
case PHPExcel_Style_Borders::DIAGONAL_UP:
$objWriter->writeAttribute('diagonalUp', 'true');
$objWriter->writeAttribute('diagonalDown', 'false');
break;
case PHPExcel_Style_Borders::DIAGONAL_DOWN:
$objWriter->writeAttribute('diagonalUp', 'false');
$objWriter->writeAttribute('diagonalDown', 'true');
break;
case PHPExcel_Style_Borders::DIAGONAL_BOTH:
$objWriter->writeAttribute('diagonalUp', 'true');
$objWriter->writeAttribute('diagonalDown', 'true');
break;
}
// BorderPr
$this->_writeBorderPr($objWriter, 'left', $pBorders->getLeft());
$this->_writeBorderPr($objWriter, 'right', $pBorders->getRight());
$this->_writeBorderPr($objWriter, 'top', $pBorders->getTop());
$this->_writeBorderPr($objWriter, 'bottom', $pBorders->getBottom());
$this->_writeBorderPr($objWriter, 'diagonal', $pBorders->getDiagonal());
$objWriter->endElement();
}
示例4: _createCSSStyleBorders
/**
* Create CSS style (PHPExcel_Style_Borders)
*
* @param PHPExcel_Style_Borders $pStyle PHPExcel_Style_Borders
* @return string
*/
private function _createCSSStyleBorders(PHPExcel_Style_Borders $pStyle)
{
// Construct HTML
$html = '';
// Create CSS
$html .= ' border-bottom: ' . $this->_createCSSStyleBorder($pStyle->getBottom()) . ';' . "\r\n";
$html .= ' border-top: ' . $this->_createCSSStyleBorder($pStyle->getTop()) . ';' . "\r\n";
$html .= ' border-left: ' . $this->_createCSSStyleBorder($pStyle->getLeft()) . ';' . "\r\n";
$html .= ' border-right: ' . $this->_createCSSStyleBorder($pStyle->getRight()) . ';' . "\r\n";
// Return
return $html;
}
示例5: _createCSSStyleBorders
/**
* Create CSS style (PHPExcel_Style_Borders)
*
* @param PHPExcel_Style_Borders $pStyle PHPExcel_Style_Borders
* @return string
*/
private function _createCSSStyleBorders(PHPExcel_Style_Borders $pStyle)
{
// Construct CSS
$css = '';
// Create CSS
$css .= 'border-bottom: ' . $this->_createCSSStyleBorder($pStyle->getBottom()) . '; ';
$css .= 'border-top: ' . $this->_createCSSStyleBorder($pStyle->getTop()) . '; ';
$css .= 'border-left: ' . $this->_createCSSStyleBorder($pStyle->getLeft()) . '; ';
$css .= 'border-right: ' . $this->_createCSSStyleBorder($pStyle->getRight()) . '; ';
// Return
return $css;
}