FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 > RichTextCellType クラス : MaxLength プロパティ |
'Declaration
Public Property MaxLength As Integer
'使用法
Dim instance As RichTextCellType Dim value As Integer instance.MaxLength = value value = instance.MaxLength
public int MaxLength {get; set;}
このプロパティは、表示可能な文字数ではなく、入力可能な文字数を設定します。セルのTextプロパティを設定してテキストを入力する場合、このプロパティはその文字数を制限しません。このプロパティによって制限されるのは、ユーザーが編集モード時に入力できる文字数だけです。
FarPoint.Win.Spread.CellType.RichTextCellType rtb; private void Form1Load(object sender, System.EventArgs e) { rtb = new FarPoint.Win.Spread.CellType.RichTextCellType(); rtb.MaxLength = 10; }
Dim rtb As New FarPoint.Win.Spread.CellType.RichTextCellType Private Sub Form1Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load rtb.MaxLength = 10 End Sub