バージョン

Blur プロパティ (TextEditorClientEvents)

コントロールがブラウザの blur イベント (フォーカスの喪失) を取得したときに呼び出される javascript 関数の名前を取得または設定します。
シンタックス
'宣言
 
Public Property Blur As String
public string Blur {get; set;}
使用例
Editor.ClientEvents.Blur = "Editor_Blur"
Editor.ClientEvents.Blur = "Editor_Blur";
// The client event 'Blur' 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_Blur(sender, e) {

    alert("Editor lost focus!");
    

}
参照