バージョン

MouseUp プロパティ (TextEditorClientEvents)

入力フィールドまたはスピン ボタンがブラウザーの mouseup イベントを取得する時に呼び出される javascript 関数の名前を取得または設定します。
シンタックス
'宣言
 
Public Property MouseUp As String
public string MouseUp {get; set;}
使用例
Editor.ClientEvents.MouseUp = "Editor_MouseUp"
Editor.ClientEvents.MouseUp = "Editor_MouseUp";
// The client event 'MouseUp' 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_MouseUp(sender, e) {
  

  window.status = "Mouse Up"; 

}
参照