Vtiful\Kernel\Format::underline

(PECL xlswriter >= 1.2.1)

Vtiful\Kernel\Format::underlineVtiful\Kernel\Format 下划线

描述

public Vtiful\Kernel\Format::underline(resource $handle, int $style)

Vtiful\Kernel\Format 下划线格式

参数

handle

xlsx 文件句柄

style

Vtiful\Kernel\Format 常量

返回值

资源

示例

示例 #1 下划线样式示例

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

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

$format = new \Vtiful\Kernel\Format($excel->getHandle());
$underlineStyle = $format->underline(\Vtiful\Kernel\Format::UNDERLINE_SINGLE)->toResource();

$excel->header(['name', 'age'])
->
data([['viest', 21]])
->
setColumn('A:A', 200, $underlineStyle)
->
output();
?>
添加注释

用户贡献注释

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