后台代码,怎样为单元格设置为单选框按扭?
复选框主要是通过以下代码设置:sheet.Cells.CellType = new CheckBoxCellType(); FpSpread1.Sheets.Columns.CellType = new FarPoint.Web.Spread.CheckBoxCellType(); 删除行:
FpSpread1.Sheets.Rows.Remove(0, 1); 添加行:
FpSpread1.Sheets.Rows.Add(0, 1); 回复 5楼dof的帖子
/// <summary>
/// 添加行
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnAddSpRow_Click(object sender, EventArgs e)
{
int maxCount=this.FpSpread1.Sheets.RowCount;
this.FpSpread1.Sheets.AddRows(maxCount,1);
} 回复 6楼wangwuliSpread的帖子
经过电话沟通,请您先根据以上代码尝试实现,有问题我们继续沟通。
页:
[1]