Documentación offline PHP master

Vtiful\Kernel\Format::italic

master Ver versión oficial en línea Licencia CC-BY-3.0Descargado el 2026-08-02

En esta página

Vtiful\Kernel\Format::italic

Vtiful\Kernel\Format italic

Descripción#

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

`Vtiful\Kernel\Format` formato cursivo

## Parámetros

`handle`  
manejador de archivos xlsx

## Valores devueltos

Recurso

## Ejemplos

Ejemplo de estilo cursiva
'./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(); ?>

```php