バージョン

KeyDown プロパティ (TextEditorClientEvents)

keydown イベントの前に呼び出される javascript 関数の名前を取得または設定します。
シンタックス
'宣言
 
Public Property KeyDown As String
public string KeyDown {get; set;}
解説

アクションをキャンセルまたはキーを変更できます。

使用例
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";
}
参照