#添加格式(表头)
my $rptheader = $xl->add_format(); # Add a format
$rptheader->set_bold(); #加粗
$rptheader->set_size('18'); #字体大小
$rptheader->set_align('center'); #居中
$rptheader->set_font('BrowalliaUPC'); #字体
#添加格式(表内容)
my $normcell = $xl->add_format(); # Add a format
$normcell->set_size('11');
$normcell->set_align('center');
$normcell->set_bg_color('21'); #背景色
#设置列的宽度
$xlsheet->set_column('A:A',12);
$xlsheet->set_column('B:B',10);
$xlsheet->set_column('C:C',14);
请发表评论