FarPoint.Win.Spread.CellType.MultiOptionCellType multcell = new FarPoint.Win.Spread.CellType.MultiOptionCellType();
multcell.Items = new String[] { "One", "Two", "Three" };
fpSpread1.ActiveSheet.Cells[0, 0].CellType = multcell;
FarPoint.Win.Spread.CellType.MultiOptionCellType multcell1 = new FarPoint.Win.Spread.CellType.MultiOptionCellType(multcell);
fpSpread1.ActiveSheet.Cells[0, 1].CellType = multcell1;
Dim multcell As New FarPoint.Win.Spread.CellType.MultiOptionCellType()
multcell.Items = new String() { "One", "Two", "Three" }
FpSpread1.ActiveSheet.Cells(0, 0).CellType = multcell
Dim multcell1 As New FarPoint.Win.Spread.CellType.MultiOptionCellType(multcell)
FpSpread1.ActiveSheet.Cells(0, 1).CellType = multcell1