Is there a quick and simple way to center align objects within the Document object? Without performing any calculation logic, ie. Get width of page, get width of contents, divide by two, etc.
I have a PdfPTable object within a Paragraph object, within the Document object. I would like to center the Paragraph object.
Thanks!
the equivalent replacement for iTextSharp :
paragraph.Alignment = Element.ALIGN_CENTER;
or try this way
paragraph.IndentationRight = 100;
paragraph.IndentationLeft = 100;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With