バージョン

ValueChanged プロパティ (TextEditorClientEvents)

値が変更されたあとに呼び出される javascript 関数の名前を取得または設定します。
シンタックス
'宣言
 
Public Property ValueChanged As String
public string ValueChanged {get; set;}
使用例
Editor.ClientEvents.ValueChanged = "Editor_ValueChanged"
Editor.ClientEvents.ValueChanged = "Editor_ValueChanged";
// The client event 'ValueChanged' takes two parameters sender and e
// sender  is the object which is raising the event
// e is the TextEditorValueChangedEventArgs

//ID of the editor raising the event is "Editor"

function Editor_ValueChanged(sender, e) {

    //Gets the old value in the editor
    var oldValue = e.get_oldValue();

    //Gets the new value in the editor
    var newValue = e.get_value();

    window.status = "Old Value : " + oldValue + " ; New Value : " + newValue;
}
参照