在使用itextsharp生成的pdf中,在C#中的表格上完成格式化是不可见的

时间:2015-12-09 12:26:01

标签: c# pdf-generation itextsharp

使用itextsharp生成的pdf中无法在C#中的表格上完成格式化。

我正在进行如下格式化:

Table table = new Table();
table.BorderStyle = BorderStyle.Solid;
table.Style.Add("width", "696");
table.BorderStyle = BorderStyle.Solid;
TableRow row = new TableRow();
TableCell cell = new TableCell();
cell.BorderStyle = BorderStyle.Solid;
Unit ut = new Unit(2);
cell.BorderWidth = ut;
cell.BorderColor = Color.Black;

但我的pdf生成时没有任何格式。 我的表格以pdf格式显示。但是没有应用格式化。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

您似乎想要添加黑色边框并将表格宽度设置为696。

val query = Query.parse("school A and ( school D or school B)").getOrElse(False)

query.check(Set("A", "D"))  // true
query.check(Set("A", "E"))  // false