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