MESCIUS SPREAD for Windows Forms 15.0J
GetInputMapWhenChildHasFocus メソッド (FpSpread)
使用例 

子コントロールにキーボードフォーカスがあるときの入力マップを取得します。
構文
'宣言
 
Public Overridable Function GetInputMapWhenChildHasFocus() As InputMap
public virtual InputMap GetInputMapWhenChildHasFocus()
使用例
次のサンプルコードは、GetInputMapWhenChildHasFocusメソッドを使用します。
FarPoint.Win.Spread.InputMap im;
im = fpSpread1.GetInputMapWhenChildHasFocus();
FarPoint.Win.Spread.Keystroke k = new FarPoint.Win.Spread.Keystroke(Keys.Down, Keys.None);
im.Put(k, FarPoint.Win.Spread.SpreadActions.ActivatePreviousChild);
fpSpread1.SetInputMapWhenChildHasFocus(im);
listBox1.Items.Add(fpSpread1.GetInputMapWhenChildHasFocus().Size);
Dim im As FarPoint.Win.Spread.InputMap
im = fpSpread1.GetInputMapWhenChildHasFocus()
Dim k As New FarPoint.Win.Spread.Keystroke(Keys.Down, Keys.None)
im.Put(k, FarPoint.Win.Spread.SpreadActions.ActivatePreviousChild)
fpSpread1.SetInputMapWhenChildHasFocus(im)
ListBox1.Items.Add(fpSpread1.GetInputMapWhenChildHasFocus().Size)
参照

FpSpread クラス
FpSpread メンバ

 

 


© MESCIUS inc. All rights reserved.