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"; }