Vtiful\Kernel\Excel::setRow

(PECL xlswriter >= 1.2.1)

Vtiful\Kernel\Excel::setRowVtiful\Kernel\Excel setRow

描述

public Vtiful\Kernel\Excel::setRow(string $range, float $height, resource $format = ?)

设置行的格式。

参数

range

单元格起始和结束坐标字符串

height

行高

format

单元格格式资源

返回值

Vtiful\Kernel\Excel 实例

示例

示例 #1 setRow 示例

<?php
$config
= [
'path' => './tests'
];

$excel = new \Vtiful\Kernel\Excel($config);
$excel->fileName('tutorial01.xlsx');

$format = new \Vtiful\Kernel\Format($excel->getHandle());
$boldStyle = $format->bold()->toResource();

$excel->header(['name', 'age'])
->
data([['viest', 21]])
->
setRow('A1', 20, $boldStyle)
->
output();
添加备注

用户贡献的备注

此页面没有用户贡献的备注。
To Top