MESCIUS SPREAD for Windows Forms 15.0J
MaxLength プロパティ (RichTextCellType)
使用例 

リッチテキスト型セルに入力できる最大文字数を取得または設定します。
構文
'宣言
 
Public Property MaxLength As Integer
public int MaxLength {get; set;}

プロパティ値

文字数を表す Integer
解説

このプロパティは、表示可能な文字数ではなく、入力可能な文字数を設定します。セルの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
参照

RichTextCellType クラス
RichTextCellType メンバ

 

 


© MESCIUS inc. All rights reserved.