in reply to Re^2: Adding Borders to Cells using Excel::Writer::XLSX
in thread Adding Borders to Cells using Excel::Writer::XLSX
see Excel::Writer::XLSX#!perl use strict; use Excel::Writer::XLSX; my $workbook = Excel::Writer::XLSX->new( 'borders.xlsx' ); my $worksheet = $workbook->add_worksheet(); my $fmt_top = $workbook->add_format(); $fmt_top->set_top(); $worksheet->set_column( 'A:B', 30, $fmt_top );
|
|---|