PowerTools SPREAD for Windows Forms 8.0J
Get メソッド (InputMap)


入力マップを取得するキー操作
指定したキー操作のマッピングを返します。
構文
'Declaration
 
Public Function Get( _
   ByVal keystroke As Keystroke _
) As Object
'使用法
 
Dim instance As InputMap
Dim keystroke As Keystroke
Dim value As Object
 
value = instance.Get(keystroke)
public object Get( 
   Keystroke keystroke
)

パラメータ

keystroke
入力マップを取得するキー操作

戻り値の型

キー操作を含む Object
解説
現在の入力マップにマッピングが定義されていない場合、このメソッドは親入力マップに問い合わせます。
次のサンプルコードでは、このメンバを使用して、指定したキーのマッピングを返しています。
FarPoint.Win.Spread.InputMap im = new FarPoint.Win.Spread.InputMap();
FarPoint.Win.Spread.Keystroke k = new FarPoint.Win.Spread.Keystroke(Keys.Enter, Keys.None);
im = fpSpread1.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenAncestorOfFocused);
listBox1.Items.Add(im.Get(k).ToString());
Dim im As New FarPoint.Win.Spread.InputMap()
Dim k As New FarPoint.Win.Spread.Keystroke(Keys.Enter, Keys.None)
im = FpSpread1.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenAncestorOfFocused)
ListBox1.Items.Add(im.Get(k).ToString())
参照

InputMap クラス
InputMap メンバ

 

 


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