1| 操作 | 旧版本 | 新版本 | d.ts文件 |
2| ---- | ------ | ------ | -------- |
3|新增|NA|类名:inputDevice;<br>方法or属性:type ChangedType = 'add' \| 'remove';|@ohos.multimodalInput.inputDevice.d.ts|
4|新增|NA|类名:inputDevice;<br>方法or属性:function on(type: "change", listener: Callback\<DeviceListener>): void;|@ohos.multimodalInput.inputDevice.d.ts|
5|新增|NA|类名:inputDevice;<br>方法or属性:function off(type: "change", listener?: Callback\<DeviceListener>): void;|@ohos.multimodalInput.inputDevice.d.ts|
6|新增|NA|类名:inputDevice;<br>方法or属性:function getDeviceList(callback: AsyncCallback\<Array\<number>>): void;|@ohos.multimodalInput.inputDevice.d.ts|
7|新增|NA|类名:inputDevice;<br>方法or属性:function getDeviceList(): Promise\<Array\<number>>;|@ohos.multimodalInput.inputDevice.d.ts|
8|新增|NA|类名:inputDevice;<br>方法or属性:function getDeviceInfo(deviceId: number, callback: AsyncCallback\<InputDeviceData>): void;|@ohos.multimodalInput.inputDevice.d.ts|
9|新增|NA|类名:inputDevice;<br>方法or属性:function getDeviceInfo(deviceId: number): Promise\<InputDeviceData>;|@ohos.multimodalInput.inputDevice.d.ts|
10|新增|NA|类名:inputDevice;<br>方法or属性:function supportKeys(deviceId: number, keys: Array\<KeyCode>, callback: AsyncCallback\<Array\<boolean>>): void;|@ohos.multimodalInput.inputDevice.d.ts|
11|新增|NA|类名:inputDevice;<br>方法or属性:function supportKeys(deviceId: number, keys: Array\<KeyCode>): Promise\<Array\<boolean>>;|@ohos.multimodalInput.inputDevice.d.ts|
12|新增|NA|类名:inputDevice;<br>方法or属性:function getKeyboardType(deviceId: number, callback: AsyncCallback\<KeyboardType>): void;|@ohos.multimodalInput.inputDevice.d.ts|
13|新增|NA|类名:inputDevice;<br>方法or属性:function getKeyboardType(deviceId: number): Promise\<KeyboardType>;|@ohos.multimodalInput.inputDevice.d.ts|
14|新增|NA|类名:KeyboardType;<br>方法or属性:NONE = 0|@ohos.multimodalInput.inputDevice.d.ts|
15|新增|NA|类名:KeyboardType;<br>方法or属性:UNKNOWN = 1|@ohos.multimodalInput.inputDevice.d.ts|
16|新增|NA|类名:KeyboardType;<br>方法or属性:ALPHABETIC_KEYBOARD = 2|@ohos.multimodalInput.inputDevice.d.ts|
17|新增|NA|类名:KeyboardType;<br>方法or属性:DIGITAL_KEYBOARD = 3|@ohos.multimodalInput.inputDevice.d.ts|
18|新增|NA|类名:KeyboardType;<br>方法or属性:HANDWRITING_PEN = 4|@ohos.multimodalInput.inputDevice.d.ts|
19|新增|NA|类名:KeyboardType;<br>方法or属性:REMOTE_CONTROL = 5|@ohos.multimodalInput.inputDevice.d.ts|
20|新增|NA|类名:DeviceListener;<br>方法or属性:type: ChangedType;|@ohos.multimodalInput.inputDevice.d.ts|
21|新增|NA|类名:DeviceListener;<br>方法or属性:deviceId: number;|@ohos.multimodalInput.inputDevice.d.ts|
22|新增|NA|类名:AxisRange;<br>方法or属性:fuzz: number;|@ohos.multimodalInput.inputDevice.d.ts|
23|新增|NA|类名:AxisRange;<br>方法or属性:flat: number;|@ohos.multimodalInput.inputDevice.d.ts|
24|新增|NA|类名:AxisRange;<br>方法or属性:resolution: number;|@ohos.multimodalInput.inputDevice.d.ts|
25|新增|NA|类名:InputDeviceData;<br>方法or属性:bus: number;|@ohos.multimodalInput.inputDevice.d.ts|
26|新增|NA|类名:InputDeviceData;<br>方法or属性:product: number;|@ohos.multimodalInput.inputDevice.d.ts|
27|新增|NA|类名:InputDeviceData;<br>方法or属性:vendor: number;|@ohos.multimodalInput.inputDevice.d.ts|
28|新增|NA|类名:InputDeviceData;<br>方法or属性:version: number;|@ohos.multimodalInput.inputDevice.d.ts|
29|新增|NA|类名:InputDeviceData;<br>方法or属性:phys: string;|@ohos.multimodalInput.inputDevice.d.ts|
30|新增|NA|类名:InputDeviceData;<br>方法or属性:uniq: string;|@ohos.multimodalInput.inputDevice.d.ts|
31|新增|NA|类名:inputDeviceCooperate;<br>方法or属性:function enable(enable: boolean, callback: AsyncCallback\<void>): void;|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
32|新增|NA|类名:inputDeviceCooperate;<br>方法or属性:function enable(enable: boolean): Promise\<void>;|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
33|新增|NA|类名:inputDeviceCooperate;<br>方法or属性:function start(sinkDeviceDescriptor: string, srcInputDeviceId: number, callback: AsyncCallback\<void>): void;|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
34|新增|NA|类名:inputDeviceCooperate;<br>方法or属性:function start(sinkDeviceDescriptor: string, srcInputDeviceId: number): Promise\<void>;|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
35|新增|NA|类名:inputDeviceCooperate;<br>方法or属性:function stop(callback: AsyncCallback\<void>): void;|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
36|新增|NA|类名:inputDeviceCooperate;<br>方法or属性:function stop(): Promise\<void>;|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
37|新增|NA|类名:inputDeviceCooperate;<br>方法or属性:function getState(deviceDescriptor: string, callback: AsyncCallback\<{ state: boolean }>): void;|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
38|新增|NA|类名:inputDeviceCooperate;<br>方法or属性:function getState(deviceDescriptor: string): Promise\<{ state: boolean }>;|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
39|新增|NA|类名:inputDeviceCooperate;<br>方法or属性:function on(type: 'cooperation', callback: AsyncCallback\<{ deviceDescriptor: string, eventMsg: EventMsg }>): void;|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
40|新增|NA|类名:inputDeviceCooperate;<br>方法or属性:function off(type: 'cooperation', callback?: AsyncCallback\<void>): void;|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
41|新增|NA|类名:EventMsg;<br>方法or属性:MSG_COOPERATE_INFO_START = 200|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
42|新增|NA|类名:EventMsg;<br>方法or属性:MSG_COOPERATE_INFO_SUCCESS = 201|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
43|新增|NA|类名:EventMsg;<br>方法or属性:MSG_COOPERATE_INFO_FAIL = 202|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
44|新增|NA|类名:EventMsg;<br>方法or属性:MSG_COOPERATE_STATE_ON = 500|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
45|新增|NA|类名:EventMsg;<br>方法or属性:MSG_COOPERATE_STATE_OFF = 501|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
46|新增|NA|类名:InputEvent;<br>方法or属性:id: number;|@ohos.multimodalInput.inputEvent.d.ts|
47|新增|NA|类名:InputEvent;<br>方法or属性:deviceId: number;|@ohos.multimodalInput.inputEvent.d.ts|
48|新增|NA|类名:InputEvent;<br>方法or属性:actionTime: number;|@ohos.multimodalInput.inputEvent.d.ts|
49|新增|NA|类名:InputEvent;<br>方法or属性:screenId: number;|@ohos.multimodalInput.inputEvent.d.ts|
50|新增|NA|类名:InputEvent;<br>方法or属性:windowId: number;|@ohos.multimodalInput.inputEvent.d.ts|
51|新增|NA|类名:inputMonitor;<br>方法or属性:function on(type:"mouse", receiver:Callback\<MouseEvent>):void;|@ohos.multimodalInput.inputMonitor.d.ts|
52|新增|NA|类名:inputMonitor;<br>方法or属性:function off(type:"mouse", receiver?:Callback\<MouseEvent>):void;|@ohos.multimodalInput.inputMonitor.d.ts|
53|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_FN = 0|@ohos.multimodalInput.keyCode.d.ts|
54|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_UNKNOWN = -1|@ohos.multimodalInput.keyCode.d.ts|
55|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_HOME = 1|@ohos.multimodalInput.keyCode.d.ts|
56|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BACK = 2|@ohos.multimodalInput.keyCode.d.ts|
57|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MEDIA_PLAY_PAUSE = 10|@ohos.multimodalInput.keyCode.d.ts|
58|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MEDIA_STOP = 11|@ohos.multimodalInput.keyCode.d.ts|
59|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MEDIA_NEXT = 12|@ohos.multimodalInput.keyCode.d.ts|
60|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MEDIA_PREVIOUS = 13|@ohos.multimodalInput.keyCode.d.ts|
61|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MEDIA_REWIND = 14|@ohos.multimodalInput.keyCode.d.ts|
62|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MEDIA_FAST_FORWARD = 15|@ohos.multimodalInput.keyCode.d.ts|
63|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_VOLUME_UP = 16|@ohos.multimodalInput.keyCode.d.ts|
64|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_VOLUME_DOWN = 17|@ohos.multimodalInput.keyCode.d.ts|
65|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_POWER = 18|@ohos.multimodalInput.keyCode.d.ts|
66|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CAMERA = 19|@ohos.multimodalInput.keyCode.d.ts|
67|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_VOLUME_MUTE = 22|@ohos.multimodalInput.keyCode.d.ts|
68|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MUTE = 23|@ohos.multimodalInput.keyCode.d.ts|
69|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BRIGHTNESS_UP = 40|@ohos.multimodalInput.keyCode.d.ts|
70|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BRIGHTNESS_DOWN = 41|@ohos.multimodalInput.keyCode.d.ts|
71|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_0 = 2000|@ohos.multimodalInput.keyCode.d.ts|
72|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_1 = 2001|@ohos.multimodalInput.keyCode.d.ts|
73|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_2 = 2002|@ohos.multimodalInput.keyCode.d.ts|
74|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_3 = 2003|@ohos.multimodalInput.keyCode.d.ts|
75|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_4 = 2004|@ohos.multimodalInput.keyCode.d.ts|
76|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_5 = 2005|@ohos.multimodalInput.keyCode.d.ts|
77|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_6 = 2006|@ohos.multimodalInput.keyCode.d.ts|
78|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_7 = 2007|@ohos.multimodalInput.keyCode.d.ts|
79|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_8 = 2008|@ohos.multimodalInput.keyCode.d.ts|
80|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_9 = 2009|@ohos.multimodalInput.keyCode.d.ts|
81|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_STAR = 2010|@ohos.multimodalInput.keyCode.d.ts|
82|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_POUND = 2011|@ohos.multimodalInput.keyCode.d.ts|
83|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_DPAD_UP = 2012|@ohos.multimodalInput.keyCode.d.ts|
84|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_DPAD_DOWN = 2013|@ohos.multimodalInput.keyCode.d.ts|
85|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_DPAD_LEFT = 2014|@ohos.multimodalInput.keyCode.d.ts|
86|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_DPAD_RIGHT = 2015|@ohos.multimodalInput.keyCode.d.ts|
87|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_DPAD_CENTER = 2016|@ohos.multimodalInput.keyCode.d.ts|
88|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_A = 2017|@ohos.multimodalInput.keyCode.d.ts|
89|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_B = 2018|@ohos.multimodalInput.keyCode.d.ts|
90|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_C = 2019|@ohos.multimodalInput.keyCode.d.ts|
91|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_D = 2020|@ohos.multimodalInput.keyCode.d.ts|
92|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_E = 2021|@ohos.multimodalInput.keyCode.d.ts|
93|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F = 2022|@ohos.multimodalInput.keyCode.d.ts|
94|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_G = 2023|@ohos.multimodalInput.keyCode.d.ts|
95|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_H = 2024|@ohos.multimodalInput.keyCode.d.ts|
96|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_I = 2025|@ohos.multimodalInput.keyCode.d.ts|
97|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_J = 2026|@ohos.multimodalInput.keyCode.d.ts|
98|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_K = 2027|@ohos.multimodalInput.keyCode.d.ts|
99|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_L = 2028|@ohos.multimodalInput.keyCode.d.ts|
100|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_M = 2029|@ohos.multimodalInput.keyCode.d.ts|
101|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_N = 2030|@ohos.multimodalInput.keyCode.d.ts|
102|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_O = 2031|@ohos.multimodalInput.keyCode.d.ts|
103|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_P = 2032|@ohos.multimodalInput.keyCode.d.ts|
104|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_Q = 2033|@ohos.multimodalInput.keyCode.d.ts|
105|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_R = 2034|@ohos.multimodalInput.keyCode.d.ts|
106|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_S = 2035|@ohos.multimodalInput.keyCode.d.ts|
107|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_T = 2036|@ohos.multimodalInput.keyCode.d.ts|
108|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_U = 2037|@ohos.multimodalInput.keyCode.d.ts|
109|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_V = 2038|@ohos.multimodalInput.keyCode.d.ts|
110|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_W = 2039|@ohos.multimodalInput.keyCode.d.ts|
111|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_X = 2040|@ohos.multimodalInput.keyCode.d.ts|
112|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_Y = 2041|@ohos.multimodalInput.keyCode.d.ts|
113|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_Z = 2042|@ohos.multimodalInput.keyCode.d.ts|
114|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_COMMA = 2043|@ohos.multimodalInput.keyCode.d.ts|
115|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PERIOD = 2044|@ohos.multimodalInput.keyCode.d.ts|
116|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_ALT_LEFT = 2045|@ohos.multimodalInput.keyCode.d.ts|
117|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_ALT_RIGHT = 2046|@ohos.multimodalInput.keyCode.d.ts|
118|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SHIFT_LEFT = 2047|@ohos.multimodalInput.keyCode.d.ts|
119|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SHIFT_RIGHT = 2048|@ohos.multimodalInput.keyCode.d.ts|
120|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_TAB = 2049|@ohos.multimodalInput.keyCode.d.ts|
121|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SPACE = 2050|@ohos.multimodalInput.keyCode.d.ts|
122|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SYM = 2051|@ohos.multimodalInput.keyCode.d.ts|
123|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_EXPLORER = 2052|@ohos.multimodalInput.keyCode.d.ts|
124|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_ENVELOPE = 2053|@ohos.multimodalInput.keyCode.d.ts|
125|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_ENTER = 2054|@ohos.multimodalInput.keyCode.d.ts|
126|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_DEL = 2055|@ohos.multimodalInput.keyCode.d.ts|
127|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_GRAVE = 2056|@ohos.multimodalInput.keyCode.d.ts|
128|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MINUS = 2057|@ohos.multimodalInput.keyCode.d.ts|
129|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_EQUALS = 2058|@ohos.multimodalInput.keyCode.d.ts|
130|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_LEFT_BRACKET = 2059|@ohos.multimodalInput.keyCode.d.ts|
131|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_RIGHT_BRACKET = 2060|@ohos.multimodalInput.keyCode.d.ts|
132|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BACKSLASH = 2061|@ohos.multimodalInput.keyCode.d.ts|
133|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SEMICOLON = 2062|@ohos.multimodalInput.keyCode.d.ts|
134|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_APOSTROPHE = 2063|@ohos.multimodalInput.keyCode.d.ts|
135|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SLASH = 2064|@ohos.multimodalInput.keyCode.d.ts|
136|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_AT = 2065|@ohos.multimodalInput.keyCode.d.ts|
137|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PLUS = 2066|@ohos.multimodalInput.keyCode.d.ts|
138|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MENU = 2067|@ohos.multimodalInput.keyCode.d.ts|
139|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PAGE_UP = 2068|@ohos.multimodalInput.keyCode.d.ts|
140|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PAGE_DOWN = 2069|@ohos.multimodalInput.keyCode.d.ts|
141|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_ESCAPE = 2070|@ohos.multimodalInput.keyCode.d.ts|
142|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_FORWARD_DEL = 2071|@ohos.multimodalInput.keyCode.d.ts|
143|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CTRL_LEFT = 2072|@ohos.multimodalInput.keyCode.d.ts|
144|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CTRL_RIGHT = 2073|@ohos.multimodalInput.keyCode.d.ts|
145|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CAPS_LOCK = 2074|@ohos.multimodalInput.keyCode.d.ts|
146|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SCROLL_LOCK = 2075|@ohos.multimodalInput.keyCode.d.ts|
147|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_META_LEFT = 2076|@ohos.multimodalInput.keyCode.d.ts|
148|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_META_RIGHT = 2077|@ohos.multimodalInput.keyCode.d.ts|
149|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_FUNCTION = 2078|@ohos.multimodalInput.keyCode.d.ts|
150|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SYSRQ = 2079|@ohos.multimodalInput.keyCode.d.ts|
151|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BREAK = 2080|@ohos.multimodalInput.keyCode.d.ts|
152|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MOVE_HOME = 2081|@ohos.multimodalInput.keyCode.d.ts|
153|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MOVE_END = 2082|@ohos.multimodalInput.keyCode.d.ts|
154|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_INSERT = 2083|@ohos.multimodalInput.keyCode.d.ts|
155|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_FORWARD = 2084|@ohos.multimodalInput.keyCode.d.ts|
156|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MEDIA_PLAY = 2085|@ohos.multimodalInput.keyCode.d.ts|
157|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MEDIA_PAUSE = 2086|@ohos.multimodalInput.keyCode.d.ts|
158|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MEDIA_CLOSE = 2087|@ohos.multimodalInput.keyCode.d.ts|
159|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MEDIA_EJECT = 2088|@ohos.multimodalInput.keyCode.d.ts|
160|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MEDIA_RECORD = 2089|@ohos.multimodalInput.keyCode.d.ts|
161|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F1 = 2090|@ohos.multimodalInput.keyCode.d.ts|
162|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F2 = 2091|@ohos.multimodalInput.keyCode.d.ts|
163|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F3 = 2092|@ohos.multimodalInput.keyCode.d.ts|
164|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F4 = 2093|@ohos.multimodalInput.keyCode.d.ts|
165|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F5 = 2094|@ohos.multimodalInput.keyCode.d.ts|
166|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F6 = 2095|@ohos.multimodalInput.keyCode.d.ts|
167|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F7 = 2096|@ohos.multimodalInput.keyCode.d.ts|
168|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F8 = 2097|@ohos.multimodalInput.keyCode.d.ts|
169|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F9 = 2098|@ohos.multimodalInput.keyCode.d.ts|
170|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F10 = 2099|@ohos.multimodalInput.keyCode.d.ts|
171|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F11 = 2100|@ohos.multimodalInput.keyCode.d.ts|
172|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F12 = 2101|@ohos.multimodalInput.keyCode.d.ts|
173|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUM_LOCK = 2102|@ohos.multimodalInput.keyCode.d.ts|
174|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_0 = 2103|@ohos.multimodalInput.keyCode.d.ts|
175|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_1 = 2104|@ohos.multimodalInput.keyCode.d.ts|
176|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_2 = 2105|@ohos.multimodalInput.keyCode.d.ts|
177|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_3 = 2106|@ohos.multimodalInput.keyCode.d.ts|
178|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_4 = 2107|@ohos.multimodalInput.keyCode.d.ts|
179|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_5 = 2108|@ohos.multimodalInput.keyCode.d.ts|
180|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_6 = 2109|@ohos.multimodalInput.keyCode.d.ts|
181|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_7 = 2110|@ohos.multimodalInput.keyCode.d.ts|
182|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_8 = 2111|@ohos.multimodalInput.keyCode.d.ts|
183|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_9 = 2112|@ohos.multimodalInput.keyCode.d.ts|
184|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_DIVIDE = 2113|@ohos.multimodalInput.keyCode.d.ts|
185|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_MULTIPLY = 2114|@ohos.multimodalInput.keyCode.d.ts|
186|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_SUBTRACT = 2115|@ohos.multimodalInput.keyCode.d.ts|
187|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_ADD = 2116|@ohos.multimodalInput.keyCode.d.ts|
188|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_DOT = 2117|@ohos.multimodalInput.keyCode.d.ts|
189|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_COMMA = 2118|@ohos.multimodalInput.keyCode.d.ts|
190|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_ENTER = 2119|@ohos.multimodalInput.keyCode.d.ts|
191|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_EQUALS = 2120|@ohos.multimodalInput.keyCode.d.ts|
192|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_LEFT_PAREN = 2121|@ohos.multimodalInput.keyCode.d.ts|
193|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_RIGHT_PAREN = 2122|@ohos.multimodalInput.keyCode.d.ts|
194|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_VIRTUAL_MULTITASK = 2210|@ohos.multimodalInput.keyCode.d.ts|
195|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SLEEP = 2600|@ohos.multimodalInput.keyCode.d.ts|
196|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_ZENKAKU_HANKAKU = 2601|@ohos.multimodalInput.keyCode.d.ts|
197|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_102ND = 2602|@ohos.multimodalInput.keyCode.d.ts|
198|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_RO = 2603|@ohos.multimodalInput.keyCode.d.ts|
199|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_KATAKANA = 2604|@ohos.multimodalInput.keyCode.d.ts|
200|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_HIRAGANA = 2605|@ohos.multimodalInput.keyCode.d.ts|
201|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_HENKAN = 2606|@ohos.multimodalInput.keyCode.d.ts|
202|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_KATAKANA_HIRAGANA = 2607|@ohos.multimodalInput.keyCode.d.ts|
203|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MUHENKAN = 2608|@ohos.multimodalInput.keyCode.d.ts|
204|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_LINEFEED = 2609|@ohos.multimodalInput.keyCode.d.ts|
205|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MACRO = 2610|@ohos.multimodalInput.keyCode.d.ts|
206|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NUMPAD_PLUSMINUS = 2611|@ohos.multimodalInput.keyCode.d.ts|
207|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SCALE = 2612|@ohos.multimodalInput.keyCode.d.ts|
208|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_HANGUEL = 2613|@ohos.multimodalInput.keyCode.d.ts|
209|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_HANJA = 2614|@ohos.multimodalInput.keyCode.d.ts|
210|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_YEN = 2615|@ohos.multimodalInput.keyCode.d.ts|
211|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_STOP = 2616|@ohos.multimodalInput.keyCode.d.ts|
212|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_AGAIN = 2617|@ohos.multimodalInput.keyCode.d.ts|
213|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PROPS = 2618|@ohos.multimodalInput.keyCode.d.ts|
214|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_UNDO = 2619|@ohos.multimodalInput.keyCode.d.ts|
215|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_COPY = 2620|@ohos.multimodalInput.keyCode.d.ts|
216|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_OPEN = 2621|@ohos.multimodalInput.keyCode.d.ts|
217|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PASTE = 2622|@ohos.multimodalInput.keyCode.d.ts|
218|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_FIND = 2623|@ohos.multimodalInput.keyCode.d.ts|
219|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CUT = 2624|@ohos.multimodalInput.keyCode.d.ts|
220|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_HELP = 2625|@ohos.multimodalInput.keyCode.d.ts|
221|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CALC = 2626|@ohos.multimodalInput.keyCode.d.ts|
222|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_FILE = 2627|@ohos.multimodalInput.keyCode.d.ts|
223|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BOOKMARKS = 2628|@ohos.multimodalInput.keyCode.d.ts|
224|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NEXT = 2629|@ohos.multimodalInput.keyCode.d.ts|
225|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PLAYPAUSE = 2630|@ohos.multimodalInput.keyCode.d.ts|
226|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PREVIOUS = 2631|@ohos.multimodalInput.keyCode.d.ts|
227|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_STOPCD = 2632|@ohos.multimodalInput.keyCode.d.ts|
228|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CONFIG = 2634|@ohos.multimodalInput.keyCode.d.ts|
229|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_REFRESH = 2635|@ohos.multimodalInput.keyCode.d.ts|
230|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_EXIT = 2636|@ohos.multimodalInput.keyCode.d.ts|
231|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_EDIT = 2637|@ohos.multimodalInput.keyCode.d.ts|
232|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SCROLLUP = 2638|@ohos.multimodalInput.keyCode.d.ts|
233|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SCROLLDOWN = 2639|@ohos.multimodalInput.keyCode.d.ts|
234|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NEW = 2640|@ohos.multimodalInput.keyCode.d.ts|
235|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_REDO = 2641|@ohos.multimodalInput.keyCode.d.ts|
236|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CLOSE = 2642|@ohos.multimodalInput.keyCode.d.ts|
237|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PLAY = 2643|@ohos.multimodalInput.keyCode.d.ts|
238|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BASSBOOST = 2644|@ohos.multimodalInput.keyCode.d.ts|
239|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PRINT = 2645|@ohos.multimodalInput.keyCode.d.ts|
240|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CHAT = 2646|@ohos.multimodalInput.keyCode.d.ts|
241|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_FINANCE = 2647|@ohos.multimodalInput.keyCode.d.ts|
242|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CANCEL = 2648|@ohos.multimodalInput.keyCode.d.ts|
243|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_KBDILLUM_TOGGLE = 2649|@ohos.multimodalInput.keyCode.d.ts|
244|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_KBDILLUM_DOWN = 2650|@ohos.multimodalInput.keyCode.d.ts|
245|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_KBDILLUM_UP = 2651|@ohos.multimodalInput.keyCode.d.ts|
246|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SEND = 2652|@ohos.multimodalInput.keyCode.d.ts|
247|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_REPLY = 2653|@ohos.multimodalInput.keyCode.d.ts|
248|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_FORWARDMAIL = 2654|@ohos.multimodalInput.keyCode.d.ts|
249|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SAVE = 2655|@ohos.multimodalInput.keyCode.d.ts|
250|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_DOCUMENTS = 2656|@ohos.multimodalInput.keyCode.d.ts|
251|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_VIDEO_NEXT = 2657|@ohos.multimodalInput.keyCode.d.ts|
252|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_VIDEO_PREV = 2658|@ohos.multimodalInput.keyCode.d.ts|
253|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BRIGHTNESS_CYCLE = 2659|@ohos.multimodalInput.keyCode.d.ts|
254|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BRIGHTNESS_ZERO = 2660|@ohos.multimodalInput.keyCode.d.ts|
255|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_DISPLAY_OFF = 2661|@ohos.multimodalInput.keyCode.d.ts|
256|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BTN_MISC = 2662|@ohos.multimodalInput.keyCode.d.ts|
257|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_GOTO = 2663|@ohos.multimodalInput.keyCode.d.ts|
258|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_INFO = 2664|@ohos.multimodalInput.keyCode.d.ts|
259|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PROGRAM = 2665|@ohos.multimodalInput.keyCode.d.ts|
260|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PVR = 2666|@ohos.multimodalInput.keyCode.d.ts|
261|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SUBTITLE = 2667|@ohos.multimodalInput.keyCode.d.ts|
262|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_FULL_SCREEN = 2668|@ohos.multimodalInput.keyCode.d.ts|
263|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_KEYBOARD = 2669|@ohos.multimodalInput.keyCode.d.ts|
264|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_ASPECT_RATIO = 2670|@ohos.multimodalInput.keyCode.d.ts|
265|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PC = 2671|@ohos.multimodalInput.keyCode.d.ts|
266|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_TV = 2672|@ohos.multimodalInput.keyCode.d.ts|
267|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_TV2 = 2673|@ohos.multimodalInput.keyCode.d.ts|
268|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_VCR = 2674|@ohos.multimodalInput.keyCode.d.ts|
269|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_VCR2 = 2675|@ohos.multimodalInput.keyCode.d.ts|
270|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SAT = 2676|@ohos.multimodalInput.keyCode.d.ts|
271|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CD = 2677|@ohos.multimodalInput.keyCode.d.ts|
272|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_TAPE = 2678|@ohos.multimodalInput.keyCode.d.ts|
273|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_TUNER = 2679|@ohos.multimodalInput.keyCode.d.ts|
274|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PLAYER = 2680|@ohos.multimodalInput.keyCode.d.ts|
275|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_DVD = 2681|@ohos.multimodalInput.keyCode.d.ts|
276|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_AUDIO = 2682|@ohos.multimodalInput.keyCode.d.ts|
277|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_VIDEO = 2683|@ohos.multimodalInput.keyCode.d.ts|
278|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MEMO = 2684|@ohos.multimodalInput.keyCode.d.ts|
279|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CALENDAR = 2685|@ohos.multimodalInput.keyCode.d.ts|
280|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_RED = 2686|@ohos.multimodalInput.keyCode.d.ts|
281|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_GREEN = 2687|@ohos.multimodalInput.keyCode.d.ts|
282|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_YELLOW = 2688|@ohos.multimodalInput.keyCode.d.ts|
283|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BLUE = 2689|@ohos.multimodalInput.keyCode.d.ts|
284|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CHANNELUP = 2690|@ohos.multimodalInput.keyCode.d.ts|
285|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CHANNELDOWN = 2691|@ohos.multimodalInput.keyCode.d.ts|
286|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_LAST = 2692|@ohos.multimodalInput.keyCode.d.ts|
287|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_RESTART = 2693|@ohos.multimodalInput.keyCode.d.ts|
288|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SLOW = 2694|@ohos.multimodalInput.keyCode.d.ts|
289|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SHUFFLE = 2695|@ohos.multimodalInput.keyCode.d.ts|
290|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_VIDEOPHONE = 2696|@ohos.multimodalInput.keyCode.d.ts|
291|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_GAMES = 2697|@ohos.multimodalInput.keyCode.d.ts|
292|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_ZOOMIN = 2698|@ohos.multimodalInput.keyCode.d.ts|
293|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_ZOOMOUT = 2699|@ohos.multimodalInput.keyCode.d.ts|
294|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_ZOOMRESET = 2700|@ohos.multimodalInput.keyCode.d.ts|
295|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_WORDPROCESSOR = 2701|@ohos.multimodalInput.keyCode.d.ts|
296|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_EDITOR = 2702|@ohos.multimodalInput.keyCode.d.ts|
297|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SPREADSHEET = 2703|@ohos.multimodalInput.keyCode.d.ts|
298|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_GRAPHICSEDITOR = 2704|@ohos.multimodalInput.keyCode.d.ts|
299|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PRESENTATION = 2705|@ohos.multimodalInput.keyCode.d.ts|
300|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_DATABASE = 2706|@ohos.multimodalInput.keyCode.d.ts|
301|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_NEWS = 2707|@ohos.multimodalInput.keyCode.d.ts|
302|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_VOICEMAIL = 2708|@ohos.multimodalInput.keyCode.d.ts|
303|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_ADDRESSBOOK = 2709|@ohos.multimodalInput.keyCode.d.ts|
304|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MESSENGER = 2710|@ohos.multimodalInput.keyCode.d.ts|
305|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BRIGHTNESS_TOGGLE = 2711|@ohos.multimodalInput.keyCode.d.ts|
306|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SPELLCHECK = 2712|@ohos.multimodalInput.keyCode.d.ts|
307|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_COFFEE = 2713|@ohos.multimodalInput.keyCode.d.ts|
308|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MEDIA_REPEAT = 2714|@ohos.multimodalInput.keyCode.d.ts|
309|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_IMAGES = 2715|@ohos.multimodalInput.keyCode.d.ts|
310|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BUTTONCONFIG = 2716|@ohos.multimodalInput.keyCode.d.ts|
311|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_TASKMANAGER = 2717|@ohos.multimodalInput.keyCode.d.ts|
312|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_JOURNAL = 2718|@ohos.multimodalInput.keyCode.d.ts|
313|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CONTROLPANEL = 2719|@ohos.multimodalInput.keyCode.d.ts|
314|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_APPSELECT = 2720|@ohos.multimodalInput.keyCode.d.ts|
315|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SCREENSAVER = 2721|@ohos.multimodalInput.keyCode.d.ts|
316|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_ASSISTANT = 2722|@ohos.multimodalInput.keyCode.d.ts|
317|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_KBD_LAYOUT_NEXT = 2723|@ohos.multimodalInput.keyCode.d.ts|
318|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BRIGHTNESS_MIN = 2724|@ohos.multimodalInput.keyCode.d.ts|
319|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BRIGHTNESS_MAX = 2725|@ohos.multimodalInput.keyCode.d.ts|
320|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_KBDINPUTASSIST_PREV = 2726|@ohos.multimodalInput.keyCode.d.ts|
321|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_KBDINPUTASSIST_NEXT = 2727|@ohos.multimodalInput.keyCode.d.ts|
322|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_KBDINPUTASSIST_PREVGROUP = 2728|@ohos.multimodalInput.keyCode.d.ts|
323|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_KBDINPUTASSIST_NEXTGROUP = 2729|@ohos.multimodalInput.keyCode.d.ts|
324|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_KBDINPUTASSIST_ACCEPT = 2730|@ohos.multimodalInput.keyCode.d.ts|
325|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_KBDINPUTASSIST_CANCEL = 2731|@ohos.multimodalInput.keyCode.d.ts|
326|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_FRONT = 2800|@ohos.multimodalInput.keyCode.d.ts|
327|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SETUP = 2801|@ohos.multimodalInput.keyCode.d.ts|
328|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_WAKEUP = 2802|@ohos.multimodalInput.keyCode.d.ts|
329|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SENDFILE = 2803|@ohos.multimodalInput.keyCode.d.ts|
330|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_DELETEFILE = 2804|@ohos.multimodalInput.keyCode.d.ts|
331|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_XFER = 2805|@ohos.multimodalInput.keyCode.d.ts|
332|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PROG1 = 2806|@ohos.multimodalInput.keyCode.d.ts|
333|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PROG2 = 2807|@ohos.multimodalInput.keyCode.d.ts|
334|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MSDOS = 2808|@ohos.multimodalInput.keyCode.d.ts|
335|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SCREENLOCK = 2809|@ohos.multimodalInput.keyCode.d.ts|
336|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_DIRECTION_ROTATE_DISPLAY = 2810|@ohos.multimodalInput.keyCode.d.ts|
337|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CYCLEWINDOWS = 2811|@ohos.multimodalInput.keyCode.d.ts|
338|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_COMPUTER = 2812|@ohos.multimodalInput.keyCode.d.ts|
339|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_EJECTCLOSECD = 2813|@ohos.multimodalInput.keyCode.d.ts|
340|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_ISO = 2814|@ohos.multimodalInput.keyCode.d.ts|
341|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_MOVE = 2815|@ohos.multimodalInput.keyCode.d.ts|
342|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F13 = 2816|@ohos.multimodalInput.keyCode.d.ts|
343|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F14 = 2817|@ohos.multimodalInput.keyCode.d.ts|
344|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F15 = 2818|@ohos.multimodalInput.keyCode.d.ts|
345|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F16 = 2819|@ohos.multimodalInput.keyCode.d.ts|
346|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F17 = 2820|@ohos.multimodalInput.keyCode.d.ts|
347|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F18 = 2821|@ohos.multimodalInput.keyCode.d.ts|
348|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F19 = 2822|@ohos.multimodalInput.keyCode.d.ts|
349|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F20 = 2823|@ohos.multimodalInput.keyCode.d.ts|
350|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F21 = 2824|@ohos.multimodalInput.keyCode.d.ts|
351|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F22 = 2825|@ohos.multimodalInput.keyCode.d.ts|
352|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F23 = 2826|@ohos.multimodalInput.keyCode.d.ts|
353|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_F24 = 2827|@ohos.multimodalInput.keyCode.d.ts|
354|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PROG3 = 2828|@ohos.multimodalInput.keyCode.d.ts|
355|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_PROG4 = 2829|@ohos.multimodalInput.keyCode.d.ts|
356|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_DASHBOARD = 2830|@ohos.multimodalInput.keyCode.d.ts|
357|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SUSPEND = 2831|@ohos.multimodalInput.keyCode.d.ts|
358|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_HP = 2832|@ohos.multimodalInput.keyCode.d.ts|
359|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SOUND = 2833|@ohos.multimodalInput.keyCode.d.ts|
360|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_QUESTION = 2834|@ohos.multimodalInput.keyCode.d.ts|
361|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CONNECT = 2836|@ohos.multimodalInput.keyCode.d.ts|
362|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SPORT = 2837|@ohos.multimodalInput.keyCode.d.ts|
363|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SHOP = 2838|@ohos.multimodalInput.keyCode.d.ts|
364|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_ALTERASE = 2839|@ohos.multimodalInput.keyCode.d.ts|
365|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_SWITCHVIDEOMODE = 2841|@ohos.multimodalInput.keyCode.d.ts|
366|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BATTERY = 2842|@ohos.multimodalInput.keyCode.d.ts|
367|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BLUETOOTH = 2843|@ohos.multimodalInput.keyCode.d.ts|
368|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_WLAN = 2844|@ohos.multimodalInput.keyCode.d.ts|
369|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_UWB = 2845|@ohos.multimodalInput.keyCode.d.ts|
370|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_WWAN_WIMAX = 2846|@ohos.multimodalInput.keyCode.d.ts|
371|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_RFKILL = 2847|@ohos.multimodalInput.keyCode.d.ts|
372|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_CHANNEL = 3001|@ohos.multimodalInput.keyCode.d.ts|
373|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BTN_0 = 3100|@ohos.multimodalInput.keyCode.d.ts|
374|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BTN_1 = 3101|@ohos.multimodalInput.keyCode.d.ts|
375|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BTN_2 = 3102|@ohos.multimodalInput.keyCode.d.ts|
376|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BTN_3 = 3103|@ohos.multimodalInput.keyCode.d.ts|
377|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BTN_4 = 3104|@ohos.multimodalInput.keyCode.d.ts|
378|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BTN_5 = 3105|@ohos.multimodalInput.keyCode.d.ts|
379|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BTN_6 = 3106|@ohos.multimodalInput.keyCode.d.ts|
380|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BTN_7 = 3107|@ohos.multimodalInput.keyCode.d.ts|
381|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BTN_8 = 3108|@ohos.multimodalInput.keyCode.d.ts|
382|新增|NA|类名:KeyCode;<br>方法or属性:KEYCODE_BTN_9 = 3109|@ohos.multimodalInput.keyCode.d.ts|
383|新增|NA|类名:Action;<br>方法or属性:CANCEL = 0|@ohos.multimodalInput.keyEvent.d.ts|
384|新增|NA|类名:Action;<br>方法or属性:DOWN = 1|@ohos.multimodalInput.keyEvent.d.ts|
385|新增|NA|类名:Action;<br>方法or属性:UP = 2|@ohos.multimodalInput.keyEvent.d.ts|
386|新增|NA|类名:Key;<br>方法or属性:code: KeyCode;|@ohos.multimodalInput.keyEvent.d.ts|
387|新增|NA|类名:Key;<br>方法or属性:pressedTime: number;|@ohos.multimodalInput.keyEvent.d.ts|
388|新增|NA|类名:Key;<br>方法or属性:deviceId: number;|@ohos.multimodalInput.keyEvent.d.ts|
389|新增|NA|类名:KeyEvent;<br>方法or属性:action: Action;|@ohos.multimodalInput.keyEvent.d.ts|
390|新增|NA|类名:KeyEvent;<br>方法or属性:key: Key;|@ohos.multimodalInput.keyEvent.d.ts|
391|新增|NA|类名:KeyEvent;<br>方法or属性:unicodeChar: number;|@ohos.multimodalInput.keyEvent.d.ts|
392|新增|NA|类名:KeyEvent;<br>方法or属性:keys: Key[];|@ohos.multimodalInput.keyEvent.d.ts|
393|新增|NA|类名:KeyEvent;<br>方法or属性:ctrlKey: boolean;|@ohos.multimodalInput.keyEvent.d.ts|
394|新增|NA|类名:KeyEvent;<br>方法or属性:altKey: boolean;|@ohos.multimodalInput.keyEvent.d.ts|
395|新增|NA|类名:KeyEvent;<br>方法or属性:shiftKey: boolean;|@ohos.multimodalInput.keyEvent.d.ts|
396|新增|NA|类名:KeyEvent;<br>方法or属性:logoKey: boolean;|@ohos.multimodalInput.keyEvent.d.ts|
397|新增|NA|类名:KeyEvent;<br>方法or属性:fnKey: boolean;|@ohos.multimodalInput.keyEvent.d.ts|
398|新增|NA|类名:KeyEvent;<br>方法or属性:capsLock: boolean;|@ohos.multimodalInput.keyEvent.d.ts|
399|新增|NA|类名:KeyEvent;<br>方法or属性:numLock: boolean;|@ohos.multimodalInput.keyEvent.d.ts|
400|新增|NA|类名:KeyEvent;<br>方法or属性:scrollLock: boolean;|@ohos.multimodalInput.keyEvent.d.ts|
401|新增|NA|类名:Action;<br>方法or属性:CANCEL = 0|@ohos.multimodalInput.mouseEvent.d.ts|
402|新增|NA|类名:Action;<br>方法or属性:MOVE = 1|@ohos.multimodalInput.mouseEvent.d.ts|
403|新增|NA|类名:Action;<br>方法or属性:BUTTON_DOWN = 2|@ohos.multimodalInput.mouseEvent.d.ts|
404|新增|NA|类名:Action;<br>方法or属性:BUTTON_UP = 3|@ohos.multimodalInput.mouseEvent.d.ts|
405|新增|NA|类名:Action;<br>方法or属性:AXIS_BEGIN = 4|@ohos.multimodalInput.mouseEvent.d.ts|
406|新增|NA|类名:Action;<br>方法or属性:AXIS_UPDATE = 5|@ohos.multimodalInput.mouseEvent.d.ts|
407|新增|NA|类名:Action;<br>方法or属性:AXIS_END = 6|@ohos.multimodalInput.mouseEvent.d.ts|
408|新增|NA|类名:Button;<br>方法or属性:LEFT = 0|@ohos.multimodalInput.mouseEvent.d.ts|
409|新增|NA|类名:Button;<br>方法or属性:MIDDLE = 1|@ohos.multimodalInput.mouseEvent.d.ts|
410|新增|NA|类名:Button;<br>方法or属性:RIGHT = 2|@ohos.multimodalInput.mouseEvent.d.ts|
411|新增|NA|类名:Button;<br>方法or属性:SIDE = 3|@ohos.multimodalInput.mouseEvent.d.ts|
412|新增|NA|类名:Button;<br>方法or属性:EXTRA = 4|@ohos.multimodalInput.mouseEvent.d.ts|
413|新增|NA|类名:Button;<br>方法or属性:FORWARD = 5|@ohos.multimodalInput.mouseEvent.d.ts|
414|新增|NA|类名:Button;<br>方法or属性:BACK = 6|@ohos.multimodalInput.mouseEvent.d.ts|
415|新增|NA|类名:Button;<br>方法or属性:TASK = 7|@ohos.multimodalInput.mouseEvent.d.ts|
416|新增|NA|类名:Axis;<br>方法or属性:SCROLL_VERTICAL = 0|@ohos.multimodalInput.mouseEvent.d.ts|
417|新增|NA|类名:Axis;<br>方法or属性:SCROLL_HORIZONTAL = 1|@ohos.multimodalInput.mouseEvent.d.ts|
418|新增|NA|类名:Axis;<br>方法or属性:PINCH = 2|@ohos.multimodalInput.mouseEvent.d.ts|
419|新增|NA|类名:AxisValue;<br>方法or属性:axis: Axis;|@ohos.multimodalInput.mouseEvent.d.ts|
420|新增|NA|类名:AxisValue;<br>方法or属性:value: number|@ohos.multimodalInput.mouseEvent.d.ts|
421|新增|NA|类名:MouseEvent;<br>方法or属性:action: Action;|@ohos.multimodalInput.mouseEvent.d.ts|
422|新增|NA|类名:MouseEvent;<br>方法or属性:screenX: number;|@ohos.multimodalInput.mouseEvent.d.ts|
423|新增|NA|类名:MouseEvent;<br>方法or属性:screenY: number;|@ohos.multimodalInput.mouseEvent.d.ts|
424|新增|NA|类名:MouseEvent;<br>方法or属性:windowX: number;|@ohos.multimodalInput.mouseEvent.d.ts|
425|新增|NA|类名:MouseEvent;<br>方法or属性:windowY: number;|@ohos.multimodalInput.mouseEvent.d.ts|
426|新增|NA|类名:MouseEvent;<br>方法or属性:rawDeltaX: number;|@ohos.multimodalInput.mouseEvent.d.ts|
427|新增|NA|类名:MouseEvent;<br>方法or属性:rawDeltaY: number;|@ohos.multimodalInput.mouseEvent.d.ts|
428|新增|NA|类名:MouseEvent;<br>方法or属性:button: Button;|@ohos.multimodalInput.mouseEvent.d.ts|
429|新增|NA|类名:MouseEvent;<br>方法or属性:pressedButtons: Button[];|@ohos.multimodalInput.mouseEvent.d.ts|
430|新增|NA|类名:MouseEvent;<br>方法or属性:axes: AxisValue[];|@ohos.multimodalInput.mouseEvent.d.ts|
431|新增|NA|类名:MouseEvent;<br>方法or属性:pressedKeys: KeyCode[];|@ohos.multimodalInput.mouseEvent.d.ts|
432|新增|NA|类名:MouseEvent;<br>方法or属性:ctrlKey: boolean;|@ohos.multimodalInput.mouseEvent.d.ts|
433|新增|NA|类名:MouseEvent;<br>方法or属性:altKey: boolean;|@ohos.multimodalInput.mouseEvent.d.ts|
434|新增|NA|类名:MouseEvent;<br>方法or属性:shiftKey: boolean;|@ohos.multimodalInput.mouseEvent.d.ts|
435|新增|NA|类名:MouseEvent;<br>方法or属性:logoKey: boolean;|@ohos.multimodalInput.mouseEvent.d.ts|
436|新增|NA|类名:MouseEvent;<br>方法or属性:fnKey:boolean|@ohos.multimodalInput.mouseEvent.d.ts|
437|新增|NA|类名:MouseEvent;<br>方法or属性:capsLock:boolean|@ohos.multimodalInput.mouseEvent.d.ts|
438|新增|NA|类名:MouseEvent;<br>方法or属性:numLock:boolean|@ohos.multimodalInput.mouseEvent.d.ts|
439|新增|NA|类名:MouseEvent;<br>方法or属性:scrollLock:boolean|@ohos.multimodalInput.mouseEvent.d.ts|
440|新增|NA|类名:pointer;<br>方法or属性:function setPointerSpeed(speed: number, callback: AsyncCallback\<void>): void;|@ohos.multimodalInput.pointer.d.ts|
441|新增|NA|类名:pointer;<br>方法or属性:function setPointerSpeed(speed: number): Promise\<void>;|@ohos.multimodalInput.pointer.d.ts|
442|新增|NA|类名:pointer;<br>方法or属性:function getPointerSpeed(callback: AsyncCallback\<number>): void;|@ohos.multimodalInput.pointer.d.ts|
443|新增|NA|类名:pointer;<br>方法or属性:function getPointerSpeed(): Promise\<number>;|@ohos.multimodalInput.pointer.d.ts|
444|新增|NA|类名:pointer;<br>方法or属性:function setPointerStyle(windowId: number, pointerStyle: PointerStyle, callback: AsyncCallback\<void>): void;|@ohos.multimodalInput.pointer.d.ts|
445|新增|NA|类名:pointer;<br>方法or属性:function setPointerStyle(windowId: number, pointerStyle: PointerStyle): Promise\<void>;|@ohos.multimodalInput.pointer.d.ts|
446|新增|NA|类名:pointer;<br>方法or属性:function getPointerStyle(windowId: number, callback: AsyncCallback\<PointerStyle>): void;|@ohos.multimodalInput.pointer.d.ts|
447|新增|NA|类名:pointer;<br>方法or属性:function getPointerStyle(windowId: number): Promise\<PointerStyle>;|@ohos.multimodalInput.pointer.d.ts|
448|新增|NA|类名:pointer;<br>方法or属性:function setPointerVisible(visible: boolean, callback: AsyncCallback\<void>): void;|@ohos.multimodalInput.pointer.d.ts|
449|新增|NA|类名:pointer;<br>方法or属性:function setPointerVisible(visible: boolean): Promise\<void>;|@ohos.multimodalInput.pointer.d.ts|
450|新增|NA|类名:pointer;<br>方法or属性:function isPointerVisible(callback: AsyncCallback\<boolean>): void;|@ohos.multimodalInput.pointer.d.ts|
451|新增|NA|类名:pointer;<br>方法or属性:function isPointerVisible(): Promise\<boolean>;|@ohos.multimodalInput.pointer.d.ts|
452|新增|NA|类名:PointerStyle;<br>方法or属性:DEFAULT|@ohos.multimodalInput.pointer.d.ts|
453|新增|NA|类名:PointerStyle;<br>方法or属性:EAST|@ohos.multimodalInput.pointer.d.ts|
454|新增|NA|类名:PointerStyle;<br>方法or属性:WEST|@ohos.multimodalInput.pointer.d.ts|
455|新增|NA|类名:PointerStyle;<br>方法or属性:SOUTH|@ohos.multimodalInput.pointer.d.ts|
456|新增|NA|类名:PointerStyle;<br>方法or属性:NORTH|@ohos.multimodalInput.pointer.d.ts|
457|新增|NA|类名:PointerStyle;<br>方法or属性:WEST_EAST|@ohos.multimodalInput.pointer.d.ts|
458|新增|NA|类名:PointerStyle;<br>方法or属性:NORTH_SOUTH|@ohos.multimodalInput.pointer.d.ts|
459|新增|NA|类名:PointerStyle;<br>方法or属性:NORTH_EAST|@ohos.multimodalInput.pointer.d.ts|
460|新增|NA|类名:PointerStyle;<br>方法or属性:NORTH_WEST|@ohos.multimodalInput.pointer.d.ts|
461|新增|NA|类名:PointerStyle;<br>方法or属性:SOUTH_EAST|@ohos.multimodalInput.pointer.d.ts|
462|新增|NA|类名:PointerStyle;<br>方法or属性:SOUTH_WEST|@ohos.multimodalInput.pointer.d.ts|
463|新增|NA|类名:PointerStyle;<br>方法or属性:NORTH_EAST_SOUTH_WEST|@ohos.multimodalInput.pointer.d.ts|
464|新增|NA|类名:PointerStyle;<br>方法or属性:NORTH_WEST_SOUTH_EAST|@ohos.multimodalInput.pointer.d.ts|
465|新增|NA|类名:PointerStyle;<br>方法or属性:CROSS|@ohos.multimodalInput.pointer.d.ts|
466|新增|NA|类名:PointerStyle;<br>方法or属性:CURSOR_COPY|@ohos.multimodalInput.pointer.d.ts|
467|新增|NA|类名:PointerStyle;<br>方法or属性:CURSOR_FORBID|@ohos.multimodalInput.pointer.d.ts|
468|新增|NA|类名:PointerStyle;<br>方法or属性:COLOR_SUCKER|@ohos.multimodalInput.pointer.d.ts|
469|新增|NA|类名:PointerStyle;<br>方法or属性:HAND_GRABBING|@ohos.multimodalInput.pointer.d.ts|
470|新增|NA|类名:PointerStyle;<br>方法or属性:HAND_OPEN|@ohos.multimodalInput.pointer.d.ts|
471|新增|NA|类名:PointerStyle;<br>方法or属性:HAND_POINTING|@ohos.multimodalInput.pointer.d.ts|
472|新增|NA|类名:PointerStyle;<br>方法or属性:HELP|@ohos.multimodalInput.pointer.d.ts|
473|新增|NA|类名:PointerStyle;<br>方法or属性:MOVE|@ohos.multimodalInput.pointer.d.ts|
474|新增|NA|类名:PointerStyle;<br>方法or属性:RESIZE_LEFT_RIGHT|@ohos.multimodalInput.pointer.d.ts|
475|新增|NA|类名:PointerStyle;<br>方法or属性:RESIZE_UP_DOWN|@ohos.multimodalInput.pointer.d.ts|
476|新增|NA|类名:PointerStyle;<br>方法or属性:SCREENSHOT_CHOOSE|@ohos.multimodalInput.pointer.d.ts|
477|新增|NA|类名:PointerStyle;<br>方法or属性:SCREENSHOT_CURSOR|@ohos.multimodalInput.pointer.d.ts|
478|新增|NA|类名:PointerStyle;<br>方法or属性:TEXT_CURSOR|@ohos.multimodalInput.pointer.d.ts|
479|新增|NA|类名:PointerStyle;<br>方法or属性:ZOOM_IN|@ohos.multimodalInput.pointer.d.ts|
480|新增|NA|类名:PointerStyle;<br>方法or属性:ZOOM_OUT|@ohos.multimodalInput.pointer.d.ts|
481|新增|NA|类名:PointerStyle;<br>方法or属性:MIDDLE_BTN_EAST|@ohos.multimodalInput.pointer.d.ts|
482|新增|NA|类名:PointerStyle;<br>方法or属性:MIDDLE_BTN_WEST|@ohos.multimodalInput.pointer.d.ts|
483|新增|NA|类名:PointerStyle;<br>方法or属性:MIDDLE_BTN_SOUTH|@ohos.multimodalInput.pointer.d.ts|
484|新增|NA|类名:PointerStyle;<br>方法or属性:MIDDLE_BTN_NORTH|@ohos.multimodalInput.pointer.d.ts|
485|新增|NA|类名:PointerStyle;<br>方法or属性:MIDDLE_BTN_NORTH_SOUTH|@ohos.multimodalInput.pointer.d.ts|
486|新增|NA|类名:PointerStyle;<br>方法or属性:MIDDLE_BTN_NORTH_EAST|@ohos.multimodalInput.pointer.d.ts|
487|新增|NA|类名:PointerStyle;<br>方法or属性:MIDDLE_BTN_NORTH_WEST|@ohos.multimodalInput.pointer.d.ts|
488|新增|NA|类名:PointerStyle;<br>方法or属性:MIDDLE_BTN_SOUTH_EAST|@ohos.multimodalInput.pointer.d.ts|
489|新增|NA|类名:PointerStyle;<br>方法or属性:MIDDLE_BTN_SOUTH_WEST|@ohos.multimodalInput.pointer.d.ts|
490|新增|NA|类名:PointerStyle;<br>方法or属性:MIDDLE_BTN_NORTH_SOUTH_WEST_EAST|@ohos.multimodalInput.pointer.d.ts|
491|新增|NA|类名:Action;<br>方法or属性:CANCEL = 0|@ohos.multimodalInput.touchEvent.d.ts|
492|新增|NA|类名:Action;<br>方法or属性:DOWN = 1|@ohos.multimodalInput.touchEvent.d.ts|
493|新增|NA|类名:Action;<br>方法or属性:MOVE = 2|@ohos.multimodalInput.touchEvent.d.ts|
494|新增|NA|类名:Action;<br>方法or属性:UP = 3|@ohos.multimodalInput.touchEvent.d.ts|
495|新增|NA|类名:ToolType;<br>方法or属性:FINGER = 0|@ohos.multimodalInput.touchEvent.d.ts|
496|新增|NA|类名:ToolType;<br>方法or属性:PEN = 1|@ohos.multimodalInput.touchEvent.d.ts|
497|新增|NA|类名:SourceType;<br>方法or属性:PEN = 1|@ohos.multimodalInput.touchEvent.d.ts|
498|新增|NA|类名:ToolType;<br>方法or属性:RUBBER = 2|@ohos.multimodalInput.touchEvent.d.ts|
499|新增|NA|类名:ToolType;<br>方法or属性:BRUSH = 3|@ohos.multimodalInput.touchEvent.d.ts|
500|新增|NA|类名:ToolType;<br>方法or属性:PENCIL = 4|@ohos.multimodalInput.touchEvent.d.ts|
501|新增|NA|类名:ToolType;<br>方法or属性:AIRBRUSH = 5|@ohos.multimodalInput.touchEvent.d.ts|
502|新增|NA|类名:ToolType;<br>方法or属性:MOUSE = 6|@ohos.multimodalInput.touchEvent.d.ts|
503|新增|NA|类名:ToolType;<br>方法or属性:LENS = 7|@ohos.multimodalInput.touchEvent.d.ts|
504|新增|NA|类名:SourceType;<br>方法or属性:TOUCH_SCREEN = 0|@ohos.multimodalInput.touchEvent.d.ts|
505|新增|NA|类名:SourceType;<br>方法or属性:TOUCH_PAD = 2|@ohos.multimodalInput.touchEvent.d.ts|
506|新增|NA|类名:Touch;<br>方法or属性:id: number;|@ohos.multimodalInput.touchEvent.d.ts|
507|新增|NA|类名:Touch;<br>方法or属性:pressedTime: number;|@ohos.multimodalInput.touchEvent.d.ts|
508|新增|NA|类名:Touch;<br>方法or属性:screenX: number;|@ohos.multimodalInput.touchEvent.d.ts|
509|新增|NA|类名:Touch;<br>方法or属性:screenY: number;|@ohos.multimodalInput.touchEvent.d.ts|
510|新增|NA|类名:Touch;<br>方法or属性:windowX: number;|@ohos.multimodalInput.touchEvent.d.ts|
511|新增|NA|类名:Touch;<br>方法or属性:windowY: number;|@ohos.multimodalInput.touchEvent.d.ts|
512|新增|NA|类名:Touch;<br>方法or属性:pressure: number;|@ohos.multimodalInput.touchEvent.d.ts|
513|新增|NA|类名:Touch;<br>方法or属性:width: number;|@ohos.multimodalInput.touchEvent.d.ts|
514|新增|NA|类名:Touch;<br>方法or属性:height: number;|@ohos.multimodalInput.touchEvent.d.ts|
515|新增|NA|类名:Touch;<br>方法or属性:tiltX: number;|@ohos.multimodalInput.touchEvent.d.ts|
516|新增|NA|类名:Touch;<br>方法or属性:tiltY: number;|@ohos.multimodalInput.touchEvent.d.ts|
517|新增|NA|类名:Touch;<br>方法or属性:toolX: number;|@ohos.multimodalInput.touchEvent.d.ts|
518|新增|NA|类名:Touch;<br>方法or属性:toolY: number;|@ohos.multimodalInput.touchEvent.d.ts|
519|新增|NA|类名:Touch;<br>方法or属性:toolWidth: number;|@ohos.multimodalInput.touchEvent.d.ts|
520|新增|NA|类名:Touch;<br>方法or属性:toolHeight: number;|@ohos.multimodalInput.touchEvent.d.ts|
521|新增|NA|类名:Touch;<br>方法or属性:rawX: number;|@ohos.multimodalInput.touchEvent.d.ts|
522|新增|NA|类名:Touch;<br>方法or属性:rawY: number;|@ohos.multimodalInput.touchEvent.d.ts|
523|新增|NA|类名:Touch;<br>方法or属性:toolType: ToolType;|@ohos.multimodalInput.touchEvent.d.ts|
524|新增|NA|类名:TouchEvent;<br>方法or属性:action: Action;|@ohos.multimodalInput.touchEvent.d.ts|
525|新增|NA|类名:TouchEvent;<br>方法or属性:touch: Touch;|@ohos.multimodalInput.touchEvent.d.ts|
526|新增|NA|类名:TouchEvent;<br>方法or属性:touches: Touch[];|@ohos.multimodalInput.touchEvent.d.ts|
527|新增|NA|类名:TouchEvent;<br>方法or属性:sourceType: SourceType;|@ohos.multimodalInput.touchEvent.d.ts|
528|废弃版本有变化|类名:inputDevice;<br>方法or属性:function getDeviceIds(callback: AsyncCallback\<Array\<number>>): void;<br>旧版本信息:|类名:inputDevice;<br>方法or属性:function getDeviceIds(callback: AsyncCallback\<Array\<number>>): void;<br>新版本信息:9<br>代替接口: ohos.multimodalInput.inputDevice#getDeviceList|@ohos.multimodalInput.inputDevice.d.ts|
529|废弃版本有变化|类名:inputDevice;<br>方法or属性:function getDeviceIds(): Promise\<Array\<number>>;<br>旧版本信息:|类名:inputDevice;<br>方法or属性:function getDeviceIds(): Promise\<Array\<number>>;<br>新版本信息:9<br>代替接口: ohos.multimodalInput.inputDevice#getDeviceList|@ohos.multimodalInput.inputDevice.d.ts|
530|废弃版本有变化|类名:inputDevice;<br>方法or属性:function getDevice(deviceId: number, callback: AsyncCallback\<InputDeviceData>): void;<br>旧版本信息:|类名:inputDevice;<br>方法or属性:function getDevice(deviceId: number, callback: AsyncCallback\<InputDeviceData>): void;<br>新版本信息:9<br>代替接口: ohos.multimodalInput.inputDevice#getDeviceInfo|@ohos.multimodalInput.inputDevice.d.ts|
531|废弃版本有变化|类名:inputDevice;<br>方法or属性:function getDevice(deviceId: number): Promise\<InputDeviceData>;<br>旧版本信息:|类名:inputDevice;<br>方法or属性:function getDevice(deviceId: number): Promise\<InputDeviceData>;<br>新版本信息:9<br>代替接口: ohos.multimodalInput.inputDevice#getDeviceInfo|@ohos.multimodalInput.inputDevice.d.ts|
532|新增(错误码)|类名:inputConsumer;<br>方法or属性:function on(type: "key", keyOptions: KeyOptions, callback: Callback\<KeyOptions>): void;<br>旧版本信息:|类名:inputConsumer;<br>方法or属性:function on(type: "key", keyOptions: KeyOptions, callback: Callback\<KeyOptions>): void;<br>新版本信息:401|@ohos.multimodalInput.inputConsumer.d.ts|
533|新增(错误码)|类名:inputConsumer;<br>方法or属性:function off(type: "key", keyOptions: KeyOptions, callback?: Callback\<KeyOptions>): void;<br>旧版本信息:|类名:inputConsumer;<br>方法or属性:function off(type: "key", keyOptions: KeyOptions, callback?: Callback\<KeyOptions>): void;<br>新版本信息:401|@ohos.multimodalInput.inputConsumer.d.ts|
534|新增(错误码)|类名:inputEventClient;<br>方法or属性:function injectEvent({KeyEvent: KeyEvent}): void;<br>旧版本信息:|类名:inputEventClient;<br>方法or属性:function injectEvent({KeyEvent: KeyEvent}): void;<br>新版本信息:401|@ohos.multimodalInput.inputEventClient.d.ts|
535|新增(错误码)|类名:inputMonitor;<br>方法or属性:function on(type:"touch", receiver:TouchEventReceiver):void;<br>旧版本信息:|类名:inputMonitor;<br>方法or属性:function on(type:"touch", receiver:TouchEventReceiver):void;<br>新版本信息:401,201|@ohos.multimodalInput.inputMonitor.d.ts|
536|新增(错误码)|类名:inputMonitor;<br>方法or属性:function off(type:"touch", receiver?:TouchEventReceiver):void;<br>旧版本信息:|类名:inputMonitor;<br>方法or属性:function off(type:"touch", receiver?:TouchEventReceiver):void;<br>新版本信息:401,201|@ohos.multimodalInput.inputMonitor.d.ts|
537|函数有变化|类名:inputDevice;<br>方法or属性:type AxisType = 'NULL';|类名:inputDevice;<br>方法or属性:type AxisType = 'touchMajor' \| 'touchMinor' \| 'orientation' \| 'x' \| 'y' \| 'pressure' \| 'toolMinor' \| 'toolMajor' \| 'NULL';|@ohos.multimodalInput.inputDevice.d.ts|
538