Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know how it's possible to set cell padding in PHPExcel ? Searched for 30mins and still can't find a proper solution. There is no useful documentation on this.

share|improve this question

1 Answer

Cell Padding is an HTML concept, and there is nothing like it in Excel. How would you set cell padding in MS Excel itself?

Probably the best you can manage is setting the cell height and width.

EDIT

I've been googling this, and even Microsoft say that there is no equivalent of cell padding in Excel. The best option seems to be using cell alignment indents (combined with column width) for horizontal padding; and row height and vertical alignment for vertical padding. These can be set in PHPExcel.

share|improve this answer
1  
Nope, cell padding (or "inner margin" or "content margin" etc.) is a general concept in layouts, software and documents. MS Excel, OpenOffice and LibreOffice can do this. I'm talking about the popular PHP library "PHPExcel" here, so this has nothing to do with HTML – Panique Sep 20 '12 at 13:26
I'm trying to identify how to set an inner or content margin in MS Excel without success, nor can I find either of those terms related to spreadsheet cells (rather than page print layout, or embedded tables) in the ECMA or BIFF documentation for xlsx or xls files. I'm somewhat familiar with PHPExcel: if I'm not familiar with elements like cellpadding, then it's unlikely to be in PHPExcel... but if you can point me to the relevant parts of the documentation, I can look at implementing it. – Mark Baker Sep 20 '12 at 15:19
Ok, I'll have a look on how this is called, but IT'S THERE, i've been working with Excel for nearly 10years and done this several times. To make clear what i mean: the amount of pixels/pt from the content to the border of the cell. – Panique Sep 20 '12 at 16:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.