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.

I am using a java version of this library and can't figure out how to set the cell's height. When I use cell.setFixedHeight() and passing any number less that 18 the content dissapears in output PDF file. Why? Thank you

share|improve this question

1 Answer

up vote 1 down vote accepted

Check whether the width and height given for document is not exceeds.

Document document = new Document(PageSize.A4, 60, 60, 120, 80);

and for cell height you have to give in float value for e.g

Cell.setFixedHeight(45f);

I hope this will help you to proceed further :-)

share|improve this answer

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.