FarPoint.Win.Spread アセンブリ > FarPoint.Win.Spread.CellType 名前空間 > TextCellType クラス : MaxLength プロパティ |
これは表示可能な文字数ではなく、入力可能な文字数です。セルのTextプロパティを設定してテキストを入力する場合、このプロパティはその文字数を制限しません。このプロパティによって制限されるのは、ユーザーが編集モード時に入力できる文字数だけです。
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