I use this code ... my tables are attached to the left side of the document, since I did not give any paddings in the document ...
Document document = new Document(PageSize.A4, 0, 0, 0, 0);
But now I want to give margin left and margin directly to my tables ... I used
outerTable.SpacingBefore = 20f;
it didnβt work, then I tried to give the filling left to my cell, it didnβt work either.
outerCell.PaddingLeft = 20f;
Now my tables are attached to the left. How would I move them? Help if you tried to move tables to itextsharp ...
pls check the attached screen for reference

source
share