バージョン

MouseMove プロパティ (TextEditorClientEvents)

入力フィールドまたはスピン ボタンがブラウザーの mousemove イベントを取得する時に呼び出される javascript 関数の名前を取得または設定します。
シンタックス
'宣言
 
Public Property MouseMove As String
public string MouseMove {get; set;}
使用例
Editor.ClientEvents.MouseMove = "Editor_MouseMove"
Editor.ClientEvents.MouseMove = "Editor_MouseMove";
// The client event 'MouseMove' takes two parameters sender and e
 // sender  is the object which is raising the event
 // e is the EventArgs
	
 //ID of the editor raising the event is "Editor"

 function Editor_MouseMove(sender, e) {

    window.status = "Mouse moving in the editor…";

}
参照