1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
$style_choisi = $sheet->getStyle($cellule);
$style_choisi->applyFromArray(
array(
'font' => array(
'bold' => true, //Gras
'color' => array(
'rgb' => '000000' //Couleur du texte
),
'name' => 'Verdana', //Police Verdana
'size' => 10,
),
'borders' => array(
'allborders' => array(
'style' => 'dotted', // Bordure pointillée
'color' => array(
'rgb' => '000000'//Fond Noir
),
)
),
'alignment' => array(
// Centré le texte horisontalement et verticalement
'horizontal' => 'center',
'vertical' => 'center',
'wrap' => false, // Renvoi à la ligne automatique
),
'fill' => array(
'type' => 'solid',//Motif plein
'rotation' => 0,
'startcolor' => array(
'rgb' => 'FFFFFF'
),
'endcolor' => array(
'rgb' => 'FFFFFF'
)
),
)
);
$sheet->duplicateStyle($style_choisi ,'A4:Z1000); |
Partager