Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# iTextSharp AutoAdjust column widths

Is there a way to adjust columnwidth automatically to fit as much content in them as they can (sort of like double click a column width is a grid control).

At the moment I am setting them as percentages, but as there is different content depending on search criteria, I would like the column width to adjust appropriately.

I am currently setting the widths as below:

var table = new PdfPTable(9) {WidthPercentage = 100};
var colWidthPercentages = new[] {6f, 10f, 10f, 10f, 20f, 20f, 8f, 8f, 8f};
table.SetWidths(colWidthPercentages);  

Does anyone know how to do this, or if not, a way to find out the optimum width a column would need to be to fit its content?

like image 538
Michal Ciechan Avatar asked Aug 13 '10 16:08

Michal Ciechan


1 Answers

You can use

XGraphics.MeasureString( string, XFont )

See this question : Calculate text height based on available width and font?

like image 125
mathieu Avatar answered Sep 23 '22 01:09

mathieu