public bool ExitOnLastChar {get; set;}
'宣言
Public Property ExitOnLastChar As Boolean
プロパティ値
true入力コントロールによって定義された最後の文字がコントロールに入力されると同時にタブオーダーの次のコントロールにフォーカスが移動する場合は
true。それ以外の場合は
false。
既定値は
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