Editor.ClientEvents.MouseMove = "Editor_MouseMove"
Editor.ClientEvents.MouseMove = "Editor_MouseMove";
// The client event 'MouseMove' 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_MouseMove(sender, e) { window.status = "Mouse moving in the editor…"; }