回复 3# wjj_123 的帖子
wjj_123 你好,
后台实现方法如下:
- protected void Button1_Click(object sender, EventArgs e)
- {
- int row=this.FpSpread1.Sheets[0].ActiveRow;
- for (int i = 0; i < this.FpSpread1.Sheets[0].ColumnCount; i++)
- {
- this.FpSpread1.Sheets[0].Cells[row, i].ResetText();
- }
- }
复制代码 |
|