public bool ExitOnLastChar {get; set;}
'Declaration
Public Property ExitOnLastChar As Boolean
'使用法
Dim instance As InputManCellTypeBase
Dim value As Boolean
instance.ExitOnLastChar = value
value = instance.ExitOnLastChar
プロパティ値
入力コントロールによって定義された最後の文字がコントロールに入力されると同時にタブオーダーの次のコントロールにフォーカスが移動する場合は
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