FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > DialogKeyEventArgs クラス : KeyCode プロパティ |
'Declaration
Public ReadOnly Property KeyCode As Keys
'使用法
Dim instance As DialogKeyEventArgs Dim value As Keys value = instance.KeyCode
public Keys KeyCode {get;}
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