バージョン

MouseOut プロパティ (TextEditorClientEvents)

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

            
    window.status = "Mouse is out of the editor";
    
}
参照