//倍精度型セルの値を小数点以下3桁で表示します
FpSpread1.Cells[0, 1].CellType = new DoubleCellType() { DecimalDigits=3, FixedPoint=true };
FpSpread1.Cells[0, 1].Value = 1;
'倍精度型セルの値を小数点以下3桁で表示します
FpSpread1.Cells(0, 1).CellType = New DoubleCellType() With { .DecimalDigits=3, .FixedPoint=True }
FpSpread1.Cells(0, 1).Value = 1