wanhan25 你好,
请使用以下代码查看效果:
- this.textControl1.Tables.Add(10, 10, 11);
- TXTextControl.Table table = this.textControl1.Tables.GetItem(11);
- foreach (TXTextControl.TableRow item in table.Rows)
- {
- item.CellFormat.LeftBorderColor = Color.Black;
- item.CellFormat.TopBorderColor = Color.Black;
- item.CellFormat.RightBorderColor = Color.Black;
- item.CellFormat.BottomBorderColor = Color.Black;
- item.CellFormat.BottomBorderWidth = 1;
- item.CellFormat.LeftBorderWidth = 1;
- item.CellFormat.RightBorderWidth = 1;
- item.CellFormat.TopBorderWidth = 1;
- }
复制代码 |