This repository was archived by the owner on Mar 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathKeyCode.cs
More file actions
61 lines (43 loc) · 1.75 KB
/
Copy pathKeyCode.cs
File metadata and controls
61 lines (43 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using System;
using System.Html;
using System.Runtime.CompilerServices;
using jQueryApi.UI.Effects;
namespace jQueryApi.UI {
[Imported]
[ScriptNamespace("jQuery.ui")]
[ScriptName("keyCode")]
public static class KeyCode {
[IntrinsicProperty, ScriptName("BACKSPACE")]
public static int BACKSPACE { get; set; }
[IntrinsicProperty, ScriptName("COMMA")]
public static int COMMA { get; set; }
[IntrinsicProperty, ScriptName("DELETE")]
public static int DELETE { get; set; }
[IntrinsicProperty, ScriptName("DOWN")]
public static int DOWN { get; set; }
[IntrinsicProperty, ScriptName("END")]
public static int END { get; set; }
[IntrinsicProperty, ScriptName("ENTER")]
public static int ENTER { get; set; }
[IntrinsicProperty, ScriptName("ESCAPE")]
public static int ESCAPE { get; set; }
[IntrinsicProperty, ScriptName("HOME")]
public static int HOME { get; set; }
[IntrinsicProperty, ScriptName("LEFT")]
public static int LEFT { get; set; }
[IntrinsicProperty, ScriptName("PAGE_DOWN")]
public static int PAGE_DOWN { get; set; }
[IntrinsicProperty, ScriptName("PAGE_UP")]
public static int PAGE_UP { get; set; }
[IntrinsicProperty, ScriptName("PERIOD")]
public static int PERIOD { get; set; }
[IntrinsicProperty, ScriptName("RIGHT")]
public static int RIGHT { get; set; }
[IntrinsicProperty, ScriptName("SPACE")]
public static int SPACE { get; set; }
[IntrinsicProperty, ScriptName("TAB")]
public static int TAB { get; set; }
[IntrinsicProperty, ScriptName("UP")]
public static int UP { get; set; }
}
}