SPREAD for ASP.NET 10.0J サンプルコード集 > セル型 > 整数/倍精度/通貨型セル > 負の値を赤色で表示する |
セル型のNegativeRedプロパティをTrueに設定します。NegativeRedプロパティは、標準型、整数型、倍精度型、通貨型、パーセント型、マスク型セルで使用できます。
//整数型セルの負数を赤色で表示します FpSpread1.Cells[0, 0, 0, 1].CellType = new IntegerCellType() { NegativeRed = true }; FpSpread1.Cells[0, 0].Value = -1000; FpSpread1.Cells[0, 1].Value = 1000;
'整数型セルの負数を赤色で表示します FpSpread1.Cells(0, 0, 0, 1).CellType = New IntegerCellType() With { .NegativeRed = True } FpSpread1.Cells(0, 0).Value = -1000 FpSpread1.Cells(0, 1).Value = 1000