バージョン

Focus プロパティ (TextEditorClientEvents)

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

    alert("Editor gained focus!");
   

}
参照