Vtiful\Kernel\Format::italic

(PECL xlswriter >= 1.2.1)

Vtiful\Kernel\Format::italicVtiful\Kernel\Format 斜体

描述

public Vtiful\Kernel\Format::italic(resource $handle)

Vtiful\Kernel\Format 斜体格式

参数

handle

xlsx 文件句柄

返回值

资源

示例

示例 #1 斜体样式示例

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

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

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

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

用户贡献的备注

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