我想使用win32 :: OLE模塊編寫現有的XLSX文件。我想按單元格插入值單元格。我也想格式化單元格(字體,顏色,對齊方式等)。我的要求是隻使用Win32的:: OLE模塊,可以請你建議我我必須使用哪種方法,在此先感謝....如何在Perl語言中使用Win32 :: OLE模塊在XLSX文件中的單元格中格式化文本
**formatstring.pl**
use strict;
use warnings;
use win32::OLE;
our $Excel1 = Win32::OLE->new('Excel.Application');
our $Workbook1= $Excel1->Workbooks->Open($outputfilepath);
my $sheet1 = $Workbook1->Worksheets(1);
our $RowCount=$sheet1->Usedrange->Rows->{Count};
my $g_DS_TestCaseID="sd123";
print "RowCount of outputfile: $RowCount";
$sheet1->Cells($RowCount+1,1)->{value}=$g_DS_TestCaseID;#here i want to format the text as bold with colorindex as green