GrapeCity SPREAD for Windows Forms 12.0J
ExitOnLastChar プロパティ (InputManCellTypeBase)


コントロールに最後の文字が入力されると同時にタブオーダーの次のコントロールがフォーカスを受け取るかどうかを取得または設定します。
構文
'Declaration
 
Public Property ExitOnLastChar As Boolean
'使用法
 
Dim instance As InputManCellTypeBase
Dim value As Boolean
 
instance.ExitOnLastChar = value
 
value = instance.ExitOnLastChar
public bool ExitOnLastChar {get; set;}

プロパティ値

入力コントロールによって定義された最後の文字がコントロールに入力されると同時にタブオーダーの次のコントロールにフォーカスが移動する場合は true。それ以外の場合は false
既定値は false です。
解説
最後に入力した文字によってテキストがコントロールの最大文字数を超えた場合、入力フォーカスが次のコントロールに移動します。
次のサンプルコードは、ExitOnLastChar プロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType inputcell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
inputcell.ExitOnLastChar = true;
fpSpread1.Sheets[0].Cells[0, 0].CellType = inputcell;
Dim inputcell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
inputcell.ExitOnLastChar = True
fpSpread1.Sheets(0).Cells(0, 0).CellType = inputcell
参照

InputManCellTypeBase クラス
InputManCellTypeBase メンバ
ExitOnLeftRightKey プロパティ

 

 


Copyright © 2004 GrapeCity inc.