次のサンプルコードは、テキスト型セルを作成します。
FarPoint.Win.Spread.CellType.TextCellType txtct = new FarPoint.Win.Spread.CellType.TextCellType();
txtct.CharacterSet = FarPoint.Win.Spread.CellType.CharacterSet.AlphaNumeric;
fpSpread1.ActiveSheet.Cells[0, 0].CellType = txtct;
Dim txtct As New FarPoint.Win.Spread.CellType.TextCellType()
txtct.CharacterSet = FarPoint.Win.Spread.CellType.CharacterSet.AlphaNumeric
FpSpread1.ActiveSheet.Cells(0, 0).CellType = txtct
System.Object
System.ValueType
System.Enum
FarPoint.Win.Spread.CellType.CharacterSet