回复 5楼songguanglun的帖子
请尝试以下代码:
- protected override void Render(HtmlTextWriter writer)
- {
- Table st = this.FpSpread6.FindControl("viewport") as Table;
- if (st!=null)
- {
- int rowcount = st.Rows.Count;
- for (int i = 0; i < rowcount; i++)
- {
- int colcount = st.Rows[i].Cells.Count;
- for (int j = 0; j < colcount; j++)
- {
- st.Rows[i].Cells[j].BorderWidth = 1;
- }
- }
- }
-
- base.Render(writer);
- }
复制代码
效果图:
|