Multiple Table Column alignment in iTextsharp
问题 I am creating a table where each column has its own alignment as shown below. How do I accomplish it at column level than at cell level? 回答1: iText and iTextSharp don't support column styles and formatting. The only way to do this is as you are doing currently, cell by cell. EDIT The easiest work around is to create helper methods that set your common properties. These can either be done through extension methods or just regular static methods. I don't have a C# IDE in front of me so my