PowerTools SPREAD for Windows Forms 8.0J
MaxLength プロパティ (RichTextCellType)


リッチテキスト型セルに入力できる最大文字数を取得または設定します。
構文
'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;}

プロパティ値

文字数を表す 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 メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.