1

在 migraDoc 表中,我完成了 setedge

t.SetEdge(0, 0, t.Columns.Count, t.Rows.Count, Edge.Box, BorderStyle.Single, 0.5, Colors.Black)

它为全桌设置了优势。但我不希望桌子第一行的优势。我试过了

t.SetEdge(0, 1, t.Columns.Count, t.Rows.Count, Edge.Box, BorderStyle.Single, 0.5, Colors.Black)

但它不起作用。

4

1 回答 1

2

设置第一行:

table.SetEdge(0, 0, table.Columns.Count, 1, Edge.Box, BorderStyle.Single, 2, Colors.Red);

注意顺序是:colBegin,rowBegin,countCols,countRows

我把它弄得又红又大,以便看得清楚

于 2013-05-27T11:59:20.767 回答