可以调用ResetBackColor方法,比如说你要清楚选择区域所有单元格的背景色可以使用下面的代码:
- foreach (CellRange item in fpSpread1.ActiveSheet.GetSelections())
- {
- fpSpread1.ActiveSheet.Cells[item.Row, item.Column, item.Row + item.RowCount-1, item.Column + item.ColumnCount-1].ResetBackColor();
- }
复制代码 |