GrapeCity SPREAD for Windows Forms 12.0J
Remove メソッド (InputMap)


キー操作
指定したキー操作のマッピングを削除します。
構文
'Declaration
 
Public Sub Remove( _
   ByVal keystroke As Keystroke _
) 
'使用法
 
Dim instance As InputMap
Dim keystroke As Keystroke
 
instance.Remove(keystroke)
public void Remove( 
   Keystroke keystroke
)

パラメータ

keystroke
キー操作
次のサンプルコードは、指定したキー操作のマッピングを削除します。
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);
im.Remove(k);
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)
im.Remove(k)
参照

InputMap クラス
InputMap メンバ

 

 


Copyright © 2004 GrapeCity inc.