次のサンプルコードは、セルの最大文字数を設定します。
FarPoint.Win.Spread.CellType.TextCellType txt = new FarPoint.Win.Spread.CellType.TextCellType();
txt.MaxLength = 25;
fpSpread1.Sheets[0].Cells[0, 0].CellType = txt;
fpSpread1.Sheets[0].Cells[0, 0].Text = "This is a text cell.";
fpSpread1.Sheets[0].Columns[0].Width = 200;
Dim txt As New FarPoint.Win.Spread.CellType.TextCellType()
txt.MaxLength = 25
FpSpread1.Sheets(0).Cells(0, 0).CellType = txt
FpSpread1.Sheets(0).Cells(0, 0).Text = "This is a text cell."
FpSpread1.Sheets(0).Columns(0).Width = 200