回复 1楼落漠的帖子
你好,设置方法如下:
- this.textControl1.Tables.Add(10, 10, 11);
- TXTextControl.Table tb = this.textControl1.Tables.GetItem(11);
- foreach (TXTextControl.TableCell cell in textControl1.Tables.GetItem(11).Cells)
- {
- cell.CellFormat.LeftBorderWidth = 1;
- cell.CellFormat.RightBorderWidth = 1;
- cell.CellFormat.TopBorderWidth = 1;
- cell.CellFormat.BottomBorderWidth = 1;
- }
复制代码 |