我希望我的列的宽度是自动大小,但我知道这是不可能的,所以我尝试使用该函数MeasureString
但没有成功。
这是我的代码:
Document doc = new Document(PageSize.A4, 20, 20, 72, 72);
doc.Open();
PdfPTable t=new PdfPTable(2);
//Here I want to know the size of the column.
.
.
.
doc.Close();
我知道我需要一个对象来设置MeasureString
它的功能,但我不知道是哪个对象。