PowerTools SPREAD for Windows Forms 10.0J
KeyCode プロパティ (DialogKeyEventArgs)


ユーザーが押したキーのキーコードを取得します。
構文
'Declaration
 
Public ReadOnly Property KeyCode As Keys
'使用法
 
Dim instance As DialogKeyEventArgs
Dim value As Keys
 
value = instance.KeyCode
public Keys KeyCode {get;}
次のサンプルコードは、KeyCodeプロパティを使用します。
private void fpSpread1_DialogKey(object sender, FarPoint.Win.Spread.DialogKeyEventArgs e)
        {
            listBox1.Items.Add(e.KeyCode);
        }
Private Sub FpSpread1_DialogKey(sender As Object, e As FarPoint.Win.Spread.DialogKeyEventArgs) Handles FpSpread1.DialogKey
        ListBox1.Items.Add(e.KeyCode)
    End Sub
参照

DialogKeyEventArgs クラス
DialogKeyEventArgs メンバ

 

 


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