Vtiful\Kernel\Excel::mergeCells

(PECL xlswriter >= 1.2.1)

Vtiful\Kernel\Excel::mergeCellsVtiful\Kernel\Excel mergeCells

Descrição

public Vtiful\Kernel\Excel::mergeCells(string $scope, string $data)

Mescla células.

Parâmetros

scope

String com coordenadas de célula inicial e célula final.

data

String de dados.

Valor Retornado

Instância de Vtiful\Kernel\Excel.

Exemplos

Exemplo #1 Exemplo

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

$excel = new \Vtiful\Kernel\Excel($config);

$excel->fileName("test.xlsx")
->
mergeCells('A1:C1', 'Células mescladas')
->
output();
adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top