バージョン

KeyPress プロパティ (TextEditorClientEvents)

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

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

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