7

I trying to export my database data to excel file, so I use PHPExcel classes.

my sheet should be Right to left, How can I switch sheet direction to 'RTL' in PHPExcel ?

pnuts
  • 58,317
  • 11
  • 87
  • 139
MajAfy
  • 3,007
  • 10
  • 47
  • 83

1 Answers1

17

Quoting directly from the developer documentation, which can be found in the /Documentation folder of the distribution:

4.6.48. Right-to-left worksheet

Worksheets can be set individually whether column ‘A’ should start at left or right side. Default is left. Here is how to set columns from right-to-left.

// right-to-left worksheet
$objPHPExcel->getActiveSheet()
    ->setRightToLeft(true);
Community
  • 1
  • 1
Mark Baker
  • 209,507
  • 32
  • 346
  • 385