Vtiful\Kernel\Format::align
(PECL xlswriter >= 1.2.1)
Vtiful\Kernel\Format::align — Vtiful\Kernel\Format align
参数
handle- 
     
xlsx file handle
 style- 
     
Vtiful\Kernel\Format constant
 
返回值
Resource
示例
示例 #1 Align style example
<?php
$config = [
'path' => './tests'
];
$excel = new \Vtiful\Kernel\Excel($config);
$excel->fileName('tutorial01.xlsx');
$format = new \Vtiful\Kernel\Format($excel->getHandle());
$alignStyle = $format->align(\Vtiful\Kernel\Format::FORMAT_ALIGN_LEFT)->toResource();
$excel->header(['name', 'age'])
    ->data([['viest', 21]])
    ->setColumn('A:A', 200, $alignStyle)
    ->output();
?>
  +添加备注
  
 用户贡献的备注
此页面尚无用户贡献的备注。
备份地址:http://www.lvesu.com/blog/php/vtiful-kernel-format.align.php