■ 셀 색상을 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FarPoint.Win.Spread.Cell a1Cell; a1Cell = fpSpread1.ActiveSheet.Cells[0, 0]; a1Cell.BackColor = Color.Azure; a1Cell.ForeColor = Color.Navy; FarPoint.Win.Spread.Cell rangeCell; rangeCell = fpSpread1.ActiveSheet.Cells[2, 2, 3, 3]; rangeCell.BackColor = Color.Bisque; |