Documentación offline PHP master

Vtiful\Kernel\Format::bold

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

En esta página

Vtiful\Kernel\Format::bold

Vtiful\Kernel\Format bold

Descripción#

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

`Vtiful\Kernel\Format` formato en negrita

## Parámetros

`handle`  
manejador de archivos xlsx

## Valores devueltos

Recurso

## Ejemplos

Ejemplo de estilo negrita
'./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]]) ->setColumn('A:A', 200, $boldStyle) ->output(); ?>

```php