Posted on 2006-03-20 15:35:11-08 by jmcnamara in response to 1974
Re: Writing a Hebrew (right to left) file

The Spreadsheet::WriteExcel parent class supports a worksheet right_to_left() method for Hebew style worksheets. So you should be able to do something like the following with Spreadsheet::WriteExcel::Simple:

my $spreadsheet = Spreadsheet::WriteExcel::Simple->new(); my $worksheet = $spreadsheet->sheet(); $worksheet->right_to_left(); ...
John.
--
Direct Responses: 1977 | Write a response
Perl Weekly newsletter
A free weekly newsletter for people who are busy to read all the blogs. click here to check it out.