How to set the cell width in itextsharp pdf creation
You don't set the width of a cell.
you should set the width of the columns. And you can do that by applying them on the table object:
float[] widths = new float[] { 1f, 2f };
table.SetWidths(widths);
The answer from Neha is to set the width of the table object
more reference material here: http://www.mikesdotnetting.com/Article/86/iTextSharp-Introducing-Tables
http://indaravind.blogspot.in/2009/02/itextsharp-table-column-width.html
VB:
Dim intTblWidth() As Integer = {12, 10, 26, 10}
C#:
int[] intTblWidth = { 12, 10, 26, 10 };