アクションをキャンセルまたはキーを変更できます。
Editor.ClientEvents.KeyDown = "Editor_KeyDown"
Editor.ClientEvents.KeyDown = "Editor_KeyDown";
// The client event 'KeyDown' takes two parameters sender and e // sender is the object which is raising the event // e is the TextEditorKeyEventArgs //ID of the editor raising the event is "Editor" function Editor_KeyDown(sender, e) { //Gets the code of the key that is raising the event var keyCode = e.get_keyCode(); window.status = "KeyDown"; }