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 41 42 43 44 45 46 47 48 49
|
// Définition des propriétés du tableau.
$proprietesTableau = array(
'TB_ALIGN' => 'L',
'L_MARGIN' => 0,
'BRD_COLOR' => array(255,255,255),
'BRD_SIZE' => '0',
);
// Définition des propriétés du header du tableau.
$proprieteHeader = array(
'T_COLOR' => array(229,233,234),
'T_SIZE' => 10,
'T_FONT' => 'Arial',
'T_ALIGN' => 'C',
'V_ALIGN' => 'T',
'T_TYPE' => 'B',
'LN_SIZE' => 7,
'BG_COLOR_COL0' => array(43, 58, 54),
'BG_COLOR' => array(43, 58, 54),
'BRD_COLOR' => array(0,92,177),
'BRD_SIZE' => 0,
'BRD_TYPE' => '0',
'BRD_TYPE_NEW_PAGE' => '',
);
// Contenu du header du tableau. NULL --> pas de header
$contenuHeader = array(
35, 30, 75, 20, 20,
"Family", "Num", "Desc", "Qty", "TotalPrice"
);
// Définition des propriétés du reste du contenu du tableau.
$proprieteContenu = array(
'T_COLOR' => array(0, 0, 0),
'T_SIZE' => 10,
'T_FONT' => 'Arial',
'T_ALIGN_COL0' => 'L',
'T_ALIGN' => 'R',
'V_ALIGN' => 'M',
'T_TYPE' => '',
'LN_SIZE' => 6,
'BG_COLOR_COL0' => array(255,255,255),
'BG_COLOR' => array(255,255,255),
'BRD_COLOR' => array(0,92,177),
'BRD_SIZE' => 0,
'BRD_TYPE' => '0',
'BRD_TYPE_NEW_PAGE' => '',
); |
Partager