for(int i=0;i<t1.Rows.Count;i++) { //第二层表格 2行1列 Table t2 = t1.Rows[i].Cells[0].InsertTable(2, 1); //设置第二层表格的样式 t2.Alignment = Alignment.left; foreach (var row in t2.Rows) { foreach (var cell in row.Cells) { cell.SetBorder(TableCellBorderType.Left, new Border(BorderStyle.Tcbs_none, 0, 0, Color.White)); cell.SetBorder(TableCellBorderType.Right, new Border(BorderStyle.Tcbs_none, 0, 0, Color.White)); cell.SetBorder(TableCellBorderType.Top, new Border(BorderStyle.Tcbs_none, 0, 0, Color.White)); cell.SetBorder(TableCellBorderType.Bottom, new Border(BorderStyle.Tcbs_none, 0, 0, Color.White)); } } for(int j=0;j<t2.Rows.Count;j++) { t2.Rows[j].Cells[0].Paragraphs.First().Append("1"); } }
时间: 2024-02-10 21:18:39 浏览: 197
C/C++百行代码实现热门游戏消消乐功能的示例代码
这段代码的作用是在一个表格中插入多个2行1列的子表格,并对子表格进行样式设置,包括设置边框以及文本内容。具体来说,第一个循环是遍历父表格的每一行,然后在每行的第一列插入一个2行1列的子表格,并设置子表格的左对齐;第二个循环则是遍历子表格的每一行,将每行的第一列设置文本内容为 "1"。另外,该代码还设置了子表格的边框样式为无边框。
阅读全文