CheckBoxCellType checkCell = new CheckBoxCellType();
FpSpread1.Cells[0, 1].CellType = checkCell;
//チェックボックス型セルに値を設定します
FpSpread1.Cells[0, 1].Value = true;
Dim checkCell As New CheckBoxCellType()
FpSpread1.Cells(0, 1).CellType = checkCell
'チェックボックス型セルに値を設定します
FpSpread1.Cells(0, 1).Value = True